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.entity.ComProjectBudget;
import com.yiboshi.science.param.dto.ComProjectBudgetDTO;
import com.yiboshi.science.param.query.ComProjectBudgetQueryVO;
import java.util.List;
/**
* 经费申请表(任务书/项目申请书) Service
*
* @author lkl
* @version 2021-08-26
*/
public interface ComProjectBudgetService extends BaseService<ComProjectBudgetQueryVO, ComProjectBudgetDTO,ComProjectBudget> {
/** 获取经费列表(空对象)
*
* @return
*/
List<ComProjectBudgetDTO> getList(Integer projType);
// /**
// * 初始化控件值
// * @param budgetList
// * @return
// */
// List<ComProjectBudgetDTO> budgetControlInit(List<ComProjectBudgetDTO> budgetList);
/** 根据对象获取经费列表
*
* @param objectId
* @return
*/
List<ComProjectBudgetDTO> getListByObjectId(String objectId);
/**插入经费表
*
* @param budgetList
* @param objectId
*/
void insertBudgetList(List<ComProjectBudgetDTO> budgetList, String objectId);
/** 删除对象列表
*
* @param objectId
*/
void deleteByObjectId(String objectId);
}