package com.ots.project.exam.mapper; import com.ots.project.exam.domain.EntDemographyInfo; import java.util.List; public interface EntDemographyInfoMapper { EntDemographyInfo selectEntDemographyInfoById(Long infoId); List selectEntDemographyInfoList(EntDemographyInfo entDemographyInfo); List selectEntDemographyAndParamList(EntDemographyInfo entDemographyInfo); int insertEntDemographyInfo(EntDemographyInfo entDemographyInfo); int updateEntDemographyInfo(EntDemographyInfo entDemographyInfo); int deleteEntDemographyInfoById(Long infoId); int deleteEntDemographyInfoByIds(String[] infoIds); }