| | |
| | | package com.flightfeather.monitor.service; |
| | | |
| | | import com.flightfeather.monitor.pojo.*; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | |
| | | List<AnalysisDustData> analysisByTime(String siteName, String beginTime, String endTime); |
| | | |
| | | PageBean pageAnalysisTime(Integer page, Integer pageSize, String siteName, String beginTime, String endTime); |
| | | PageBean pageAnalysisTime(Integer page, Integer pageSize, String siteName, String beginTime, String endTime, String orderProp, |
| | | Boolean asc); |
| | | |
| | | List<DustExceptionType> getExceptionType(); |
| | | |
| | |
| | | List<AnalysisDustData> analysisAll(String siteName, String beginTime, String endTime); |
| | | |
| | | List<DustSiteData> conditonQueryhistoryallData(String siteName, String mnCode, String beginTime, String endTime, String[] scenarioType); |
| | | |
| | | /*新增审计信息*/ |
| | | void addAuditNotes(AuditInfo auditInfo); |
| | | |