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
package com.yiboshi.science.service;
import com.yiboshi.science.base.BaseService;
import com.yiboshi.science.base.Pagination;
import com.yiboshi.science.entity.ComProjectGroup;
import com.yiboshi.science.param.dto.ComProjectGroupDTO;
import com.yiboshi.science.param.dto.ComProjectKnowledgeStatisticDTO;
import com.yiboshi.science.param.query.ComProjectAuditQueryVO;
import com.yiboshi.science.param.query.ComProjectGroupQueryVO;
import java.util.List;
public interface ComProjectGroupService extends BaseService<ComProjectGroupQueryVO, ComProjectGroupDTO, ComProjectGroup> {
void processProjectGroup(String ProjectID);
Pagination<ComProjectGroupDTO> getProjectGroupListByPage(ComProjectGroupQueryVO vo);
boolean updataProjectGroupAdjust(List<String> IdList, String groupId);
ComProjectGroupDTO getGroupById(String id);
String save(ComProjectGroupDTO group);
String deleteByGroupId(String id);
void CalculateGroupProjectCount(String groupId);
void CalculateGroupExpertCount(String groupId);
String assignProjectGroup(int projType, List<String> GroupList, List<String> ExpertList);
String deleteAssignGroupExpert(String id);
boolean InsertProjectGroup(List<String> IdList, String groupId);
void processGroupProjectExpert(String groupId);
boolean deleteGroupProjectExpert(String groupId, String projId);
List<ComProjectKnowledgeStatisticDTO> getProjectKnowledgeStatisticByGroupId(String groupId);
boolean addProjectGroupKnowledge(String groupId, List<String> KnowledgeList, ComProjectAuditQueryVO vo);
boolean deleteProjectGroupKnowledge(String groupId, String knowledgeId);
boolean deleteProjectGroupDetail(String groupId, String knowledgeId);
}