| 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); | 
| } |