添加了根据设备编号和时间段查询火情信息的功能模块

This commit is contained in:
2022-02-14 11:59:14 +08:00
parent 20eec3a117
commit 8eb571336e
6 changed files with 109 additions and 2 deletions

View File

@ -1,11 +1,20 @@
package com.xkrs.controller;
import com.xkrs.common.encapsulation.PromptMessageEnum;
import com.xkrs.model.entity.Fire;
import com.xkrs.service.FireService;
import com.xkrs.util.Query;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.context.i18n.LocaleContextHolder;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
import java.util.List;
import java.util.Locale;
import static com.xkrs.common.encapsulation.OutputEncapsulation.outputEncapsulationObject;
/**
* @Author: XinYi Song
@ -26,4 +35,16 @@ public class FireController {
public String getFireInformation(@RequestParam("code") String code){
return fireService.getFireInformation(code);
}
/**
* 根据设备编码和时间段查询火情信息
* @param code
* @param startTime
* @param endTime
* @return
*/
@GetMapping("/selectFireBetweenTime")
public String selectFireBetweenTime(@RequestParam("code") String code, @RequestParam("startTime") String startTime, @RequestParam("endTime") String endTime){
return fireService.selectFireBetweenTime(code,startTime,endTime);
}
}