package com.ots.project.exam.service;
|
|
import com.ots.project.exam.domain.EntDemographyInfo;
|
import com.ots.project.exam.dto.DictItemDto;
|
import com.ots.project.exam.dto.ParamDefine;
|
import com.ots.project.exam.dto.ParamsInfo;
|
import com.ots.project.exam.dto.RelatedParty;
|
|
import java.util.List;
|
|
/**
|
* VUE用户服务
|
*/
|
public interface MemberService {
|
|
/**
|
* 获取企业人口学变量定义
|
*
|
* @param token
|
* @return
|
* @throws Exception
|
*/
|
List<ParamDefine> getParamDefines(String token, String lang);
|
|
/**
|
* 获取用户人口学信息
|
*
|
* @param token
|
* @return
|
*/
|
List<EntDemographyInfo> queryDemographyParamInfo(String token);
|
|
void saveDemographyParamInfo(String token, List<ParamsInfo> infos, String langType);
|
|
/**
|
* 通过token获取当前测试包的关联的产品包编码
|
*
|
* @return
|
*/
|
RelatedParty queryProdidByToken(String token);
|
|
/**
|
* 获取支持的多语言
|
*/
|
List<DictItemDto> queryLang(String token);
|
}
|