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
47
48
49
package com.yiboshi.science.service;
import com.yiboshi.science.base.BaseService;
import com.yiboshi.science.entity.ComExpertSpec;
import com.yiboshi.science.entity.SelectListItem;
import com.yiboshi.science.param.dto.ComExpertSpecDTO;
import com.yiboshi.science.param.query.ComExpertSpecQueryVO;
import java.util.List;
import java.util.Map;
public interface ComExpertSpecService extends BaseService<ComExpertSpecQueryVO, ComExpertSpecDTO, ComExpertSpec>{
/** 根据专家Id 获取专业列表
*
* @param expertId
*/
List<String> getIdListByExpertId(String expertId);
/** 根据专家Id 获取专业列表
*
* @param expertId
*/
List<ComExpertSpecDTO> getListByExpertId(String expertId);
/** 插入列表
*
* @param list
* @param expertId
*/
void insertSpecList(List<String> list, String expertId);
/**
* 根据参数获取参数列表
*
* @param specId
* @return
*/
List<SelectListItem> getExpertListBySpecId(Map<String, Object> specId);
/** 根据 项目Id 获取专家列表
*
* @param SpecList
* @param ProjList
*/
List<SelectListItem> getExpertListBySpecIdProjId(List<String> SpecList, List<String> ProjList);
/** 根据 项目Id 获取专家列表
*
* @param SpecList
*/
List<SelectListItem> getExpertListByExpertSpecIds(List<String> SpecList, List<String> ParentList, String personName);
}