| | |
| | | package com.ruoyi.doublePrevention.service.baseService;
|
| | |
|
| | | import com.ruoyi.doublePrevention.entity.PreventRiskDangerInfo;
|
| | | import com.ruoyi.doublePrevention.entity.dto.DataCountDangerResultRespDO;
|
| | | import com.ruoyi.doublePrevention.repository.param.DataCountStartAndEndTimeParams;
|
| | |
|
| | | import java.util.Date;
|
| | | import java.util.List;
|
| | |
|
| | | public interface PreventRiskDangerInfoService {
|
| | |
|
| | |
| | | * 删除隐患上报
|
| | | */
|
| | | int deleteDangerInfo(Long id);
|
| | |
|
| | | /**
|
| | | * @description 统计时间段内所有、死亡、重伤、轻伤的隐患数量
|
| | | */
|
| | | DataCountDangerResultRespDO listDangerResultCountByTime(Date startTime, Date endTime, List<Long> depIds);
|
| | |
|
| | | }
|