liusheng
2023-04-27 0ea6562494682740c8c948658cd3e32769d81c9a
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
package com.ruoyi.project.mapper;
 
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.project.domain.ServiceFundShared;
 
import java.util.List;
 
/**
 * 费用申请主Mapper接口
 * 
 * @author ruoyi
 * @date 2023-03-27
 */
public interface ServiceFundSharedMapper extends BaseMapper<ServiceFundShared>
{
    /**
     * 查询费用申请主列表
     *
     * @param serviceFundShared 费用申请主
     * @return 费用申请主集合
     */
    public List<ServiceFundShared> selectServiceFundSharedList(ServiceFundShared serviceFundShared);
 
    List<ServiceFundShared> getFundShareInfoById(Long fundid);
}