ÎļþÃû´Ó src/main/java/com/job/zsc/controller/FugitiveDustController.java ÐÞ¸Ä |
| | |
| | | package com.job.zsc.controller; |
| | | package com.flightfeather.monitor.controller; |
| | | |
| | | |
| | | import com.job.zsc.pojo.*; |
| | | import com.job.zsc.service.FugitiveDustService; |
| | | import com.flightfeather.monitor.pojo.*; |
| | | import com.flightfeather.monitor.service.FugitiveDustService; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | |
| | | |
| | | /*æ ¹æ®å¼å¸¸ç±»ååæ¶æ®µ è¿åç«ç¹åå*/ |
| | | @GetMapping("/exceptionsSiteName") |
| | | public Result getSiteNameByTimeAndExceptionType(String [] exceptionType,String beginTime, String endTime){ |
| | | public Result getSiteNameByTimeAndExceptionType(String [] exceptionType, String beginTime, String endTime){ |
| | | List<DustExceptionData> list = fugitiveDustService.getSiteNameByTimeAndExceptionType(exceptionType,beginTime,endTime); |
| | | return Result.success(list); |
| | | } |