liusheng
2023-08-11 49594433e797d03da3453240bb89186dcf136619
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
package com.ruoyi.project.service;
 
import java.util.List;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.project.domain.FunddetailReqVo;
import com.ruoyi.project.domain.ServiceFunddetail;
import com.ruoyi.project.domain.ServiceFunddetailVO;
import com.ruoyi.project.domain.vo.TaxMoneyVO;
import com.ruoyi.project.domain.vo.TaxedMoneyVO;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
 
/**
 * 费用申请明细Service接口
 *
 * @author ruoyi
 * @date 2022-01-25
 */
public interface IServiceFunddetailService extends IService<ServiceFunddetail> {
 
    /**
     * 查询费用申请明细列表
     *
     * @param serviceFunddetail 费用申请明细
     * @return 费用申请明细集合
     */
    List<ServiceFunddetail> queryList(ServiceFunddetail serviceFunddetail);
 
    /**
     * 根据受益人编号获取费用申请明细信息
     */
    List<ServiceFunddetail> getDataBybeneficiaryNo(FunddetailReqVo funddetailReqVo);
 
    /**
     * 根据受益人编号获取税费金额
     *
     * @param taxMoneyVo
     * @return
     */
    Double getTaxByBeneFiciaryNo(TaxMoneyVO taxMoneyVo);
 
    TaxedMoneyVO getTaxBeforeByAfterMoney(TaxMoneyVO taxMoneyVo);
 
    List<ServiceFunddetail> getAllDetailsByFDIDLW(Long id);
 
    List<ServiceFunddetail> getAllDetailsByFDIDSH(Long id);
 
    List<ServiceFunddetail> getAllDetailsByFDIDSS(Long id);
 
    List<ServiceFunddetail> getAllDetailsByFDIDYX(Long id);
 
    List<ServiceFunddetail> getAllDetailsByFDIDHZ(Long id);
 
    List<ServiceFunddetail> getAllDetailsByFDIDLWF(Long id);
 
    List<ServiceFunddetail> selectServiceFunddetailList(ServiceFunddetail serviceFunddetail);
 
    int deleteDetail(Long id);
 
    List<ServiceFunddetailVO> getFundDetail(Long id);
}