| | |
| | | package com.sinata.system.service; |
| | | |
| | | import com.sinata.system.domain.MwCollectRecord; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.sinata.common.entity.PageDTO; |
| | | import com.sinata.system.domain.MwCollectRecord; |
| | | import com.sinata.system.domain.dto.MwCollectRecordDTO; |
| | | import com.sinata.system.domain.query.DisposalReportQuery; |
| | | import com.sinata.system.domain.query.MwCollectRecordQuery; |
| | | import com.sinata.system.domain.vo.MedicalWasteProcessVO; |
| | | import com.sinata.system.domain.vo.MwCollectRecordVO; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.IOException; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @since 2024-12-02 |
| | | */ |
| | | public interface MwCollectRecordService extends IService<MwCollectRecord> { |
| | | /** |
| | | * 医废追溯分页列表 |
| | | * |
| | | * @param query |
| | | * @return |
| | | */ |
| | | PageDTO<MwCollectRecordVO> pageList(MwCollectRecordQuery query); |
| | | |
| | | /** |
| | | * 医废追溯详情 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | MwCollectRecordVO detail(Long id); |
| | | |
| | | /** |
| | | * 编辑 |
| | | * |
| | | * @param dto |
| | | */ |
| | | void edit(MwCollectRecordDTO dto); |
| | | |
| | | /** |
| | | * 流转过程 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | MedicalWasteProcessVO getProcess(Long id); |
| | | |
| | | /** |
| | | * 导出 |
| | | * |
| | | * @param query |
| | | * @param response |
| | | * @throws IOException |
| | | */ |
| | | void export(MwCollectRecordQuery query, HttpServletResponse response) throws IOException; |
| | | |
| | | /** |
| | | * 监管报表医疗废物产生列表 |
| | | * |
| | | * @param query |
| | | * @return |
| | | */ |
| | | List<MwCollectRecordVO> getRegulationReportList(DisposalReportQuery query); |
| | | } |