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