| | |
| | | } |
| | | |
| | | @Override |
| | | public MdcEquipmentStatisticalInfo findByEquipmentAndDate(List<String> equipmentList, String date) { |
| | | return this.baseMapper.findByEquipmentAndDate(equipmentList, date); |
| | | public List<MdcEquipmentStatisticalInfo> findByEquipmentAndDate(List<String> equipmentList, String start, String end) { |
| | | return this.baseMapper.findByEquipmentAndDate(equipmentList, start, end); |
| | | } |
| | | |
| | | @Override |
| | | public MdcEquipmentStatisticalInfo findByEquIdAndDate(String equipmentId, String date) { |
| | | return this.baseMapper.findByEquIdAndDate(equipmentId, date); |
| | | public List<MdcEquipmentStatisticalInfo> findByEquIdAndDate(String equipmentId, String start, String end) { |
| | | return this.baseMapper.findByEquIdAndDate(equipmentId, start, end); |
| | | } |
| | | |
| | | @Override |