| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.gkhy.hazmat.system.domain.HzHazmat; |
| | | import com.gkhy.hazmat.system.domain.dto.HazmatUseStatisticDTO; |
| | | import com.gkhy.hazmat.system.domain.vo.*; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | |
| | | |
| | | /** |
| | | * 危化品完全用完数量 |
| | | * @param startTime |
| | | * @param endTime |
| | | * @param companyId |
| | | * @param useStatisticDTO |
| | | * @return |
| | | */ |
| | | List<HzHazmatUseVO> useCountStatic(@Param("startTime")String startTime,@Param("endTime") String endTime,@Param("companyId") Long companyId); |
| | | List<HzHazmatUseVO> useCountStatic(HazmatUseStatisticDTO useStatisticDTO); |
| | | |
| | | List<HzEntryRecordVO> useCountHourlyStatic(@Param("startDate") String startDate, @Param("endDate") String endDate, @Param("companyId") Long companyId); |
| | | |