| | |
| | | package com.sinata.system.service; |
| | | |
| | | import com.sinata.system.domain.MwCheckoutRecord; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.sinata.common.entity.PageDTO; |
| | | import com.sinata.system.domain.MwCheckoutRecord; |
| | | import com.sinata.system.domain.dto.CollectTotalUpDto; |
| | | import com.sinata.system.domain.query.CheckoutRecordQuery; |
| | | import com.sinata.system.domain.query.DisposalReportQuery; |
| | | import com.sinata.system.domain.query.MwCheckoutRecordItemQuery; |
| | | import com.sinata.system.domain.query.MwTransitRecordQuery; |
| | | import com.sinata.system.domain.query.TransformQuery; |
| | | import com.sinata.system.domain.vo.MwCheckoutRecordVO; |
| | | import com.sinata.system.domain.vo.MwCollectRecordVO; |
| | | import com.sinata.system.domain.vo.MwMedicalWasteBoxVO; |
| | | import com.sinata.system.domain.vo.MwTransitCarWarningVO; |
| | | import com.sinata.system.domain.vo.MwTransitRecordVO; |
| | | import com.sinata.system.domain.vo.TransformVO; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.IOException; |
| | | import java.time.LocalDate; |
| | | import java.util.List; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @since 2024-12-02 |
| | | */ |
| | | public interface MwCheckoutRecordService extends IService<MwCheckoutRecord> { |
| | | /** |
| | | * 转运记录分页列表 |
| | | * |
| | | * @param query |
| | | * @return |
| | | */ |
| | | PageDTO<MwCheckoutRecordVO> pageHospitalTransitList(CheckoutRecordQuery query); |
| | | |
| | | /** |
| | | * 转运记录详情 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | MwCheckoutRecordVO hospitalDetail(Long id); |
| | | |
| | | /** |
| | | * 转运记录医废详情分页列表 |
| | | * |
| | | * @param query |
| | | * @return |
| | | */ |
| | | PageDTO<MwMedicalWasteBoxVO> hospitalDetailPage(MwCheckoutRecordItemQuery query); |
| | | |
| | | /** |
| | | * 运输记录分页列表 |
| | | * |
| | | * @param query |
| | | * @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; |
| | | |
| | | /** |
| | | * 转移联单数据 |
| | | * |
| | | * @param query |
| | | * @param treeCode |
| | | * @return |
| | | */ |
| | | List<TransformVO> getCheckoutRecordList(TransformQuery query, String treeCode); |
| | | |
| | | /** |
| | | * 监管报表医疗废物转移列表 |
| | | * |
| | | * @param query |
| | | * @return |
| | | */ |
| | | List<MwCollectRecordVO> getRegulationReportList(DisposalReportQuery query); |
| | | |
| | | List<CollectTotalUpDto> totalUp(LocalDate date, Long departmentId); |
| | | List<CollectTotalUpDto> totalUp4(Long departmentId); |
| | | List<CollectTotalUpDto> totalUp2(LocalDate date1, Long departmentId); |
| | | List<CollectTotalUpDto> totalUp5(Long departmentId); |
| | | List<CollectTotalUpDto> totalUp3(LocalDate date1,LocalDate date2, Long departmentId); |
| | | List<CollectTotalUpDto> totalUp1(Long outId); |
| | | List<CollectTotalUpDto> totalUp6(Long outId); |
| | | |
| | | /** |
| | | * 车辆转运异常预警 |
| | | * |
| | | * @return |
| | | */ |
| | | List<MwTransitCarWarningVO> queryWarningList(); |
| | | } |