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