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
50
51
52
53
54
55
package com.yiboshi.science.service;
import com.yiboshi.science.base.BaseService;
import com.yiboshi.science.entity.ComProjectResults;
import com.yiboshi.science.param.dto.ComProjectResultsDTO;
import com.yiboshi.science.param.query.ComProjectResultsQueryVO;
import java.util.List;
/**
* 预期成果 Service
*
* @author lkl
* @version 2021-08-26
*/
public interface ComProjectResultsService extends BaseService<ComProjectResultsQueryVO, ComProjectResultsDTO, ComProjectResults> {
/**
* 根据对象获取任务书预期成果
*
* @param objectId
* @return
*/
List<ComProjectResultsDTO> getListByObjectId(String objectId);
/**
* 根据对象获取任务书预期成果
*
* @param objectId
* @return
*/
List<String> getArrayByObjectId(String objectId);
/**
* 根据对象获取任务书预期成果
*
* @param objectId
* @return
*/
List<String> getNameByObjectId(String objectId);
/** 删除对象列表
*
* @param objectId
*/
void deleteByObjectId(String objectId);
/**
* 插入预期成果
*
* @param resultsList
* @param objectId
*/
void insertList(List<String> resultsList, String objectId);
/**
* 插入获取空列表
*/
List<ComProjectResultsDTO> getList();
}