yxh
yxh
2023-04-22 532ce3e0c3c899699ce67b70f1a60bf434d6a32d
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
package com.ruoyi.project.service;
 
import java.util.List;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.project.domain.ServiceFunddetail;
 
/**
 * 费用申请明细Service接口
 * 
 * @author ruoyi
 * @date 2022-01-25
 */
public interface IServiceFunddetailService extends IService<ServiceFunddetail>
{
 
    /**
     * 查询费用申请明细列表
     * 
     * @param serviceFunddetail 费用申请明细
     * @return 费用申请明细集合
     */
    public List<ServiceFunddetail> queryList(ServiceFunddetail serviceFunddetail);
 
    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);
}