| | |
| | | package com.ots.project.exam.service; |
| | | |
| | | import com.ots.project.exam.domain.EntDemographyInfo; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 人口学信息Service接口 |
| | | * |
| | | * @author ots |
| | | * @date 2019-12-15 |
| | | */ |
| | | public interface IEntDemographyInfoService { |
| | | |
| | | /** |
| | | * 查询人口学信息 |
| | | * |
| | | * @param infoId 人口学信息ID |
| | | * @return 人口学信息 |
| | | */ |
| | | EntDemographyInfo selectEntDemographyInfoById(Long infoId); |
| | | |
| | | |
| | | /** |
| | | * 查询人口学信息列表 |
| | | * |
| | | * @param entDemographyInfo 人口学信息 |
| | | * @return 人口学信息集合 |
| | | */ |
| | | List<EntDemographyInfo> selectEntDemographyInfoList(EntDemographyInfo entDemographyInfo); |
| | | |
| | | List<EntDemographyInfo> selectEntDemographyAndParamList(EntDemographyInfo entDemographyInfo); |
| | | |
| | | |
| | | /** |
| | | * 新增人口学信息 |
| | | * |
| | | * @param entDemographyInfo 人口学信息 |
| | | * @return 结果 |
| | | */ |
| | | int insertEntDemographyInfo(EntDemographyInfo entDemographyInfo); |
| | | |
| | | |
| | | /** |
| | | * 修改人口学信息 |
| | | * |
| | | * @param entDemographyInfo 人口学信息 |
| | | * @return 结果 |
| | | */ |
| | | int updateEntDemographyInfo(EntDemographyInfo entDemographyInfo); |
| | | |
| | | |
| | | /** |
| | | * 批量删除人口学信息 |
| | | * |
| | | * @param ids 需要删除的数据ID |
| | | * @return 结果 |
| | | */ |
| | | int deleteEntDemographyInfoByIds(String ids); |
| | | |
| | | |
| | | /** |
| | | * 删除人口学信息信息 |
| | | * |
| | | * @param infoId 人口学信息ID |
| | | * @return 结果 |
| | | */ |
| | | int deleteEntDemographyInfoById(Long infoId); |
| | | } |