package com.ots.project.exam.service; import com.ots.project.exam.domain.EntDemographyInfo; import java.util.List; public interface IEntDemographyInfoService { EntDemographyInfo selectEntDemographyInfoById(Long infoId); List selectEntDemographyInfoList(EntDemographyInfo entDemographyInfo); List selectEntDemographyAndParamList(EntDemographyInfo entDemographyInfo); int insertEntDemographyInfo(EntDemographyInfo entDemographyInfo); int updateEntDemographyInfo(EntDemographyInfo entDemographyInfo); int deleteEntDemographyInfoByIds(String ids); int deleteEntDemographyInfoById(Long infoId); }