linzhijie
2021-03-11 93af1c6ffb9ae0e894689ad3a37b548e57d54cff
src/main/java/com/ots/project/exam/service/MemberService.java
@@ -1,19 +1,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);
}