Commit c7400d150fa3ed6211bc30a8612e3b73f8a06160

Authored by liquanyu
1 parent bb0143b837

血糖报告

Showing 1 changed file with 2 additions and 2 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/BloodSugarController.java View file @ c7400d1
... ... @@ -76,8 +76,8 @@
76 76 * @return
77 77 */
78 78 @ResponseBody
79   - @RequestMapping(value = "/wx/{id}/{beforeWeight}/{currentWeight}", method = RequestMethod.GET)
80   - public BaseResponse setWeightInfo(@PathVariable String id,@PathVariable Double beforeWeight,@PathVariable Double currentWeight) {
  79 + @RequestMapping(value = "/wx/{id}", method = RequestMethod.GET)
  80 + public BaseResponse setWeightInfo(@PathVariable String id, String beforeWeight, String currentWeight) {
81 81 return bloodSugarService.addWeightInfo(id,beforeWeight,currentWeight);
82 82 }
83 83