| | |
| | | import com.sinata.system.domain.vo.MwMedicalWasteBoxVO; |
| | | import com.sinata.system.domain.vo.MwTransitRecordVO; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.IOException; |
| | | |
| | | /** |
| | | * <p> |
| | | * 暂存间出库记录 服务类 |
| | |
| | | * @return |
| | | */ |
| | | PageDTO<MwTransitRecordVO> transitPageList(MwTransitRecordQuery query); |
| | | |
| | | /** |
| | | * 运输记录详情 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | MwTransitRecordVO transitDetail(Long id); |
| | | |
| | | /** |
| | | * 运输记录详情分页列表 |
| | | * |
| | | * @param query |
| | | * @return |
| | | */ |
| | | PageDTO<MwMedicalWasteBoxVO> transitDetailPageList(MwTransitRecordQuery query); |
| | | |
| | | /** |
| | | * 转运记录导出 |
| | | * |
| | | * @param query |
| | | * @param response |
| | | */ |
| | | void checkoutRecordExport(CheckoutRecordQuery query, HttpServletResponse response) throws IOException; |
| | | } |