| | |
| | | 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 |
| | | */ |
| | | public interface ServiceReimbursementSharedMapper extends BaseMapper<ServiceReimbursementShared> |
| | | { |
| | | @Mapper |
| | | public interface ServiceReimbursementSharedMapper extends BaseMapper<ServiceReimbursementShared> { |
| | | /** |
| | | * 查询报销申请列表 |
| | | * |
| | |
| | | public List<ServiceReimbursementShared> selectServiceReimbursementSharedList(ServiceReimbursementShared serviceReimbursementShared); |
| | | |
| | | List<ServiceReimbursementShared> getRemShareInfoByRemId(Long RemId); |
| | | |
| | | Boolean delResharedInfoById(Long id); |
| | | } |