EarlyWarningController.java 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package com.gyee.runeconomy.controller.EarlyWarning;
  2. import com.alibaba.fastjson.JSONObject;
  3. import com.gyee.runeconomy.dto.result.JsonResult;
  4. import com.gyee.runeconomy.dto.result.ResultCode;
  5. import com.gyee.runeconomy.service.EarlyWarning.EarlyWarningReliableService;
  6. import com.gyee.runeconomy.service.Weather.WertherForecast;
  7. import io.swagger.annotations.ApiImplicitParam;
  8. import io.swagger.annotations.ApiImplicitParams;
  9. import io.swagger.annotations.ApiOperation;
  10. import org.springframework.beans.factory.annotation.Autowired;
  11. import org.springframework.web.bind.annotation.CrossOrigin;
  12. import org.springframework.web.bind.annotation.GetMapping;
  13. import org.springframework.web.bind.annotation.RequestMapping;
  14. import org.springframework.web.bind.annotation.RestController;
  15. import java.util.HashMap;
  16. import java.util.Map;
  17. @RestController
  18. @CrossOrigin
  19. @RequestMapping("/WarningReport")
  20. public class EarlyWarningController {
  21. @Autowired
  22. private EarlyWarningReliableService earlyWarningReliableService;
  23. @Autowired
  24. private WertherForecast wertherForecast;
  25. @GetMapping(value = "/reporkkxwt")
  26. @ApiOperation(value = "预警分析报告-可靠性问题", notes = "预警分析报告—可靠性问题")
  27. public JSONObject getinformationkkx() throws Exception {
  28. earlyWarningReliableService.Electricity();
  29. return JsonResult.success();
  30. }
  31. @GetMapping(value = "/report")
  32. @ApiOperation(value = "分析报告", notes = "分析报告")
  33. @ApiImplicitParams({
  34. @ApiImplicitParam(name = "time", value = "时间", required = true, dataType = "string", paramType = "query"),
  35. @ApiImplicitParam(name = "wpid", value = "场站", required = true, dataType = "string", paramType = "query")})
  36. public JSONObject getreportinformation(String time, String wpid) throws Exception {
  37. Map<String, String> map = new HashMap<>();
  38. if (!time.isEmpty()) {
  39. // map = earlyWarninggetService.Electricity(time, wpid);
  40. }
  41. if (map.size() > 0) {
  42. return JsonResult.successData(ResultCode.SUCCESS, map);
  43. } else {
  44. return JsonResult.error(500, "该月份没有数据");
  45. }
  46. }
  47. @GetMapping(value = "/weather")
  48. @ApiOperation(value = "天气", notes = "天气")
  49. public JSONObject getweather() throws Exception {
  50. wertherForecast.doTaskWeatherForecast();
  51. return JsonResult.success();
  52. }
  53. }