package com.ots.project.exam.mapper; import com.ots.project.exam.domain.EntDemographyParam; import java.util.List; import java.util.Map; public interface EntDemographyParamMapper { EntDemographyParam selectEntDemographyParamById(Long paramId); List selectEntDemographyParamList(EntDemographyParam entDemographyParam); List selectEntDemographyParamListByParamIn(String[] paramIds); int insertEntDemographyParam(EntDemographyParam entDemographyParam); int updateEntDemographyParam(EntDemographyParam entDemographyParam); int deleteEntDemographyParamById(Long paramId); int deleteEntDemographyParamByIds(String[] paramIds); }