WindDirectionController.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. package com.gyee.runeconomy.controller.WindDirection;
  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.WindDirection.WindDirectionService;
  6. import com.gyee.runeconomy.service.WindDirection.WindMachineJsService;
  7. import com.gyee.runeconomy.service.WindDirection.WindMachineService;
  8. import org.springframework.web.bind.annotation.*;
  9. import javax.annotation.Resource;
  10. import java.text.ParseException;
  11. @RestController
  12. @CrossOrigin
  13. @RequestMapping("/winddirecton")
  14. public class WindDirectionController {
  15. @Resource
  16. private WindDirectionService windDirectionService;
  17. @Resource
  18. private WindMachineService windMachineService;
  19. @Resource
  20. private WindMachineJsService windMachineJsService;
  21. /***
  22. * 风速风向频次玫瑰图
  23. * @return
  24. */
  25. @GetMapping("/roses")
  26. public JSONObject fsRoses(String wtid,String kssj,String jssj) throws Exception {
  27. Object o = windDirectionService.fxRoses(wtid, kssj, jssj);
  28. return JsonResult.successData(ResultCode.SUCCESS, o);
  29. }
  30. /**
  31. * 对风偏差分析图
  32. * @return
  33. */
  34. @GetMapping("/deviation/ratio")
  35. public JSONObject fsDeviationRatio(String wtid,String kssj,String jssj) throws ParseException {
  36. Object o = windDirectionService.windDeviationRatio(wtid, kssj, jssj);
  37. return JsonResult.successData(ResultCode.SUCCESS, o);
  38. }
  39. /**
  40. * 单机偏差分析
  41. * @return
  42. */
  43. @GetMapping("/machine")
  44. public JSONObject Deviationmachine(String wpid,int year) throws Exception {
  45. Object o = windMachineService.machine(wpid,year);
  46. return JsonResult.successData(ResultCode.SUCCESS, o);
  47. }
  48. /**
  49. * 气象单机偏差分析
  50. * @return
  51. */
  52. @GetMapping("/weatherMachine")
  53. public JSONObject weathermachine(String wpid,int year) throws Exception {
  54. Object o = windMachineService.weathermachine(wpid,year);
  55. return JsonResult.successData(ResultCode.SUCCESS, o);
  56. }
  57. /**
  58. * 单机偏差分析计算
  59. * @return
  60. */
  61. @GetMapping("/machinejs")
  62. public JSONObject Deviationmachinejs(String wpid,String time) throws Exception {
  63. Object o = windMachineJsService.machine(wpid,time);
  64. return JsonResult.successData(ResultCode.SUCCESS, o);
  65. }
  66. }