liusheng
2023-11-10 6f344e6360751574f7e03b21c00cfa3f4b2bc099
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
package com.ruoyi.project.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.project.domain.ServiceReimbursementShared;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
 
/**
 * 报销申请Mapper接口
 *
 * @author ruoyi
 * @date 2023-01-10
 */
@Mapper
public interface ServiceReimbursementSharedMapper extends BaseMapper<ServiceReimbursementShared> {
    /**
     * 查询报销申请列表
     *
     * @param serviceReimbursementShared 报销申请
     * @return 报销申请集合
     */
    public List<ServiceReimbursementShared> selectServiceReimbursementSharedList(ServiceReimbursementShared serviceReimbursementShared);
 
    List<ServiceReimbursementShared> getRemShareInfoByRemId(Long RemId);
 
    Boolean delResharedInfoById(Long id);
}