liusheng
2024-04-24 fadd75018c5cce0586e761b875ac6bb268033f73
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
package com.ruoyi.project.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.project.domain.ServiceFundShared;
import com.ruoyi.project.domain.ServiceReimbursementShared;
 
import java.util.List;
 
/**
 * 费用申请主Service接口
 *
 * @author ruoyi
 * @date 2023-03-27
 */
public interface IServiceFundSharedService extends IService<ServiceFundShared> {
 
    /**
     * 查询费用申请主列表
     *
     * @param serviceFundShared 费用申请主
     * @return 费用申请主集合
     */
    List<ServiceFundShared> queryList(ServiceFundShared serviceFundShared);
 
    List<ServiceFundShared> queryFundShareList();
 
    List<ServiceFundShared> getFundShareInfoById(Long fundid);
 
    Boolean delfundsharedInfoById(Long fundId,Long serfunid);
}