| | |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | | * 暂存间出库记录 Mapper 接口 |
| | |
| | | * @return |
| | | */ |
| | | Page<MwTransitRecordVO> transitPageList(Page<MwTransitRecordVO> page, @Param("query") MwTransitRecordQuery query, String treeCode); |
| | | |
| | | /** |
| | | * 运输记录详情 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | MwTransitRecordVO transitDetail(Long id); |
| | | |
| | | /** |
| | | * 运输记录详情分页列表 |
| | | * |
| | | * @param objectPage |
| | | * @param id |
| | | * @return |
| | | */ |
| | | Page<MwMedicalWasteBoxVO> transitDetailPageList(Page<MwMedicalWasteBoxVO> objectPage, Long id); |
| | | |
| | | /** |
| | | * 转运记录导出 |
| | | * |
| | | * @param query |
| | | * @param treeCode |
| | | */ |
| | | List<MwCheckoutRecordVO> hospitalTransitList(@Param("query") CheckoutRecordQuery query, @Param("treeCode") String treeCode); |
| | | } |