liusheng
2023-06-06 179e45847a6c1f0c473bd526c1ece9d6da01a92e
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.mapper;
 
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import java.util.List;
import com.ruoyi.project.domain.ServiceReimbursementdetail;
 
/**
 * 报销申请明细Mapper接口
 * 
 * @author ruoyi
 * @date 2022-01-24
 */
public interface ServiceReimbursementdetailMapper extends BaseMapper<ServiceReimbursementdetail>
{
    /**
     * 查询报销申请明细列表
     *
     * @param serviceReimbursementdetail 报销申请明细
     * @return 报销申请明细集合
     */
    public List<ServiceReimbursementdetail> selectServiceReimbursementdetailList(ServiceReimbursementdetail serviceReimbursementdetail);
 
    List<ServiceReimbursementdetail> getRBDetailList(Long id);
 
    List<Long> getAllIds(Long rbid);
 
 
    List<ServiceReimbursementdetail> getAllDetailsByRBID(Long id);
}