| | |
| | | import com.sinata.system.domain.query.MwCollectRecordQuery; |
| | | import com.sinata.system.domain.vo.MedicalWasteProcessVO; |
| | | import com.sinata.system.domain.vo.MwCollectRecordVO; |
| | | import com.sinata.system.domain.vo.MwCollectRecordWarningVO; |
| | | import com.sinata.system.mapper.MwCollectRecordMapper; |
| | | import com.sinata.system.service.MwCollectRecordService; |
| | | import com.sinata.system.service.SysDepartmentService; |
| | |
| | | public List<CollectCarTotalUpDto> carGroup(Long carId) { |
| | | return this.baseMapper.carGroup(carId); |
| | | } |
| | | |
| | | /** |
| | | * 查询日产废记录 |
| | | * |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<MwCollectRecordWarningVO> queryListByDay() { |
| | | return baseMapper.queryListTimeType(1); |
| | | } |
| | | |
| | | /** |
| | | * 查询月产废记录 |
| | | * |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<MwCollectRecordWarningVO> queryListByMonth() { |
| | | return baseMapper.queryListTimeType(2); |
| | | } |
| | | |
| | | @Override |
| | | public List<MwCollectRecordWarningVO> queryListGroupByDepartment() { |
| | | return baseMapper.queryListGroupByDepartment(); |
| | | } |
| | | } |