liusheng
2023-10-16 08f0193d8bbd4dd9f68706ac1313f564b7219f95
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
56
57
58
59
60
61
62
63
64
65
66
67
68
package com.ruoyi.project.service;
 
import java.util.List;
import java.util.Map;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.project.domain.ServiceFund;
import com.ruoyi.project.domain.ServiceFunddetail;
import com.ruoyi.project.domain.vo.*;
import org.springframework.web.bind.annotation.PathVariable;
 
/**
 * 费用申请主Service接口
 *
 * @author ruoyi
 * @date 2022-01-24
 */
public interface IServiceFundService extends IService<ServiceFund> {
 
    /**
     * 查询费用申请主列表
     *
     * @param serviceFund 费用申请主
     * @return 费用申请主集合
     */
    public List<ServiceFund> queryList(ServiceFund serviceFund);
 
    public List<ServiceFund> queryInfoById(ServiceFund serviceFund);
 
    List<ServiceFund> getInfoByInfoId(Long infoid);
 
 
    Long getFundId(Long infoid);
 
    /**
     * 往分享表中添加数据
     *
     * @param id
     * @return
     */
    Boolean addFundSharedInfo(Long id);
 
    List<ServiceFund> selectServiceFundList(ServiceFund serviceFund);
 
 
    List<FundVO> selectVOList(FundVO fundVO);
 
 
    List<FundDetailOneVO> showFundDetailOne(ServiceFund serviceFund);
 
    FundDetailTwoVO showFundDetailTwo(Long id);
 
    String returnId(Long id);
 
    List<SpFinancialExpensesFundOut> getListBypower(String PAUSERNO, Integer PAFUNDTYPE, String PAAPPLICANT, String PAAPPLICATIONBEGTIME, String PAAPPLICATIONENDTIME, String PADEPARTMENT, Integer CHECKFLAG, Integer APPLYTYPE,Integer CHECKSTATUS);
 
    int countItem(Long infoid, Long itemid);
 
    Long addOrUpdateNew(ServiceFundVO serviceFundVO);
 
    /**
     * 绩效计算
     *
     * @param serviceFundVO
     * @return
     */
    Map<String,Long> performance(ServiceFundVO serviceFundVO);
}