liusheng
2023-05-17 402ebeb98655455d3d2edb68407940c36386880a
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
package com.ruoyi.project.service;
 
import java.util.List;
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);
 
    List<ServiceFund> getInfoByInfoId(Long infoid);
 
 
 
    Long getFundId(Long infoid);
 
    /**
     * 往分享表中添加数据
     * @param id
     * @return
     */
    Boolean addFundSharedInfo(Long id);
 
    List<ServiceFund> selectServiceFundList(ServiceFund serviceFund);
 
    List<ServiceFunddetail> getFundDetail(Long id);
 
    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);
 
    int countItem(Long infoid, Long itemid);
}