| | |
| | | package com.sinata.system.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.sinata.system.domain.MwCollectRecord; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | 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 org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | @Mapper |
| | | public interface MwCollectRecordMapper extends BaseMapper<MwCollectRecord> { |
| | | /** |
| | | * 医废追溯分页列表 |
| | | * |
| | | * @param query |
| | | * @return |
| | | */ |
| | | Page<MwCollectRecordVO> pageList(Page<MwCollectRecordVO> mwCollectRecordVOPage, @Param("query") MwCollectRecordQuery query, @Param("treeCode") String treeCode); |
| | | |
| | | /** |
| | | * 医废追溯详情 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | MwCollectRecordVO detail(Long id); |
| | | |
| | | /** |
| | | * 流转过程 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | MedicalWasteProcessVO getProcess(Long id); |
| | | |
| | | /** |
| | | * 导出数据 |
| | | * |
| | | * @param query |
| | | * @return |
| | | */ |
| | | List<MwCollectRecordVO> getExportList(@Param("query") MwCollectRecordQuery query, @Param("treeCode") String treeCode); |
| | | |
| | | /** |
| | | * 监管报表医疗废物产生列表 |
| | | * |
| | | * @param query |
| | | * @param treeCode |
| | | * @return |
| | | */ |
| | | List<MwCollectRecordVO> getRegulationReportList(@Param("query") DisposalReportQuery query, @Param("treeCode") String treeCode); |
| | | } |