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<EntDemographyInfo> selectEntDemographyInfoList(EntDemographyInfo entDemographyInfo);
|
List<EntDemographyInfo> selectEntDemographyAndParamList(EntDemographyInfo entDemographyInfo);
|
|
int insertEntDemographyInfo(EntDemographyInfo entDemographyInfo);
|
|
int updateEntDemographyInfo(EntDemographyInfo entDemographyInfo);
|
|
int deleteEntDemographyInfoByIds(String ids);
|
|
int deleteEntDemographyInfoById(Long infoId);
|
|
/***
|
* 获取填写语言
|
* @param memberId
|
* @return
|
*/
|
String getlangType(Long memberId);
|
}
|