| | |
| | | import com.sinata.system.domain.dto.CollectDto; |
| | | import com.sinata.system.domain.dto.CollectTotalUpDto; |
| | | 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; |
| | |
| | | @Override |
| | | public List<CollectDto> getGroup(String boxNumber,Long departmentId) { |
| | | return this.baseMapper.getGroup(boxNumber,departmentId); |
| | | } @Override |
| | | } |
| | | @Override |
| | | public List<CollectDto> getGroupWithStatus(String boxNumber,Long departmentId,Integer status) { |
| | | return this.baseMapper.getGroupWithStatus(boxNumber,departmentId,status); |
| | | } |
| | | |
| | | @Override |
| | | public List<CollectDto> getGroup1(String boxNumber,Long departmentId) { |
| | | return this.baseMapper.getGroup1(boxNumber,departmentId); |
| | | } |
| | |
| | | FastExcel.write(response.getOutputStream(), MwCollectRecordVO.class).sheet("医废收集记录").doWrite(vo); |
| | | } |
| | | |
| | | /** |
| | | * 监管报表医疗废物产生列表 |
| | | * |
| | | * @param query |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<MwCollectRecordVO> getRegulationReportList(DisposalReportQuery query) { |
| | | String treeCode = sysDepartmentService.getTreeCodeByDepartmentId(query.getDepartmentId()); |
| | | return baseMapper.getRegulationReportList(query, treeCode); |
| | | } |
| | | |
| | | @Override |
| | | public List<CollectTotalUpDto> collectTotal(LocalDate date,Long departmentId) { |
| | | return baseMapper.collectTotal(date,departmentId); |