| | |
| | | |
| | | import com.ycl.dto.statistics.CategoryDto; |
| | | import com.ycl.dto.statistics.StatusDto; |
| | | import com.ycl.dto.statistics.TimeDto; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | StatusDto getStatusDataBySite(String startTime, String endTime, String site); |
| | | List<String> getDataBySiteExp(); |
| | | |
| | | /** |
| | | * 按报警时间 |
| | | */ |
| | | List<TimeDto> getDataByTime(Integer currentPage, Integer pageSize, String startTime, String endTime); |
| | | StatusDto getStatusDataByTime(String startTime, String endTime, Integer id); |
| | | List<TimeDto> getDataByTimeExp(); |
| | | |
| | | /** |
| | | * 获取分页总数 |
| | | */ |
| | | Integer getTotalByType(String startTime, String endTime); |
| | | Integer getTotalByStreet(String startTime, String endTime); |
| | | Integer getTotalBySite(String startTime, String endTime); |
| | | Integer getTotalByTime(String startTime, String endTime); |
| | | |
| | | |
| | | |