Commit bd86ec9a8038096a64a885d38d3fad93f095aa1e

Authored by hujiaqi
1 parent 9e61c8273e

post改成了get

Showing 1 changed file with 2 additions and 2 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/PredictedStatisticsController.java View file @ bd86ec9
... ... @@ -34,7 +34,7 @@
34 34  
35 35 @ResponseBody
36 36 @TokenRequired
37   - @RequestMapping(value = "predictedStatistics", method = RequestMethod.POST)
  37 + @RequestMapping(value = "predictedStatistics", method = RequestMethod.GET)
38 38 public BaseListResponse predictedStatistics(HttpServletRequest httpServletRequest,
39 39 @RequestParam(required = false) String doctorId,
40 40 @RequestParam Integer page,
... ... @@ -65,7 +65,7 @@
65 65  
66 66 @ResponseBody
67 67 @TokenRequired
68   - @RequestMapping(value = "predictedStatisticsSum", method = RequestMethod.POST)
  68 + @RequestMapping(value = "predictedStatisticsSum", method = RequestMethod.GET)
69 69 public BaseListResponse predictedStatisticsSum(HttpServletRequest httpServletRequest,
70 70 @RequestParam(required = false) String doctorId) {
71 71 BaseListResponse baseListResponse;