yxh
2023-05-31 e7acba8aaaa91a067728d4769b4af5a9dd6ac189
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
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 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);
 
    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);
}