linzhijie
2021-03-11 93af1c6ffb9ae0e894689ad3a37b548e57d54cff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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);
}