package com.ruoyi.project.mapper; 
 | 
  
 | 
  
 | 
import com.baomidou.mybatisplus.core.mapper.BaseMapper; 
 | 
  
 | 
import java.util.List; 
 | 
  
 | 
import com.ruoyi.project.domain.ServiceReimbursementdetail; 
 | 
import org.apache.ibatis.annotations.Mapper; 
 | 
  
 | 
/** 
 | 
 * 报销申请明细Mapper接口 
 | 
 * 
 | 
 * @author ruoyi 
 | 
 * @date 2022-01-24 
 | 
 */ 
 | 
@Mapper 
 | 
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); 
 | 
} 
 |