Commit 0247bd1e99e8efd74dd9983de36b71297b918278
1 parent
5693a43e1f
Exists in
master
and in
6 other branches
update code
Showing 1 changed file with 13 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/NewbornVisitControoler.java
View file @
0247bd1
... | ... | @@ -91,7 +91,7 @@ |
91 | 91 | @ResponseBody |
92 | 92 | @TokenRequired |
93 | 93 | public BaseObjectResponse delete(@PathVariable String id,HttpServletRequest request) { |
94 | - return visitService.delete(id,getUserId(request)); | |
94 | + return visitService.delete(id, getUserId(request)); | |
95 | 95 | } |
96 | 96 | |
97 | 97 | /** |
... | ... | @@ -113,5 +113,17 @@ |
113 | 113 | public BaseObjectResponse init() { |
114 | 114 | return visitService.init(); |
115 | 115 | } |
116 | + | |
117 | + | |
118 | +// @RequestMapping(value = "/queryNewbornWait", method = RequestMethod.GET) | |
119 | +// @ResponseBody | |
120 | +// @TokenRequired | |
121 | +// public BaseObjectResponse queryNewbornWait(HttpServletRequest request, | |
122 | +// @RequestParam(value = "hospitalProvinceId",required = false) String hospitalProvinceId, | |
123 | +// @RequestParam(value = "hospitalCityId",required = false) String hospitalCityId, | |
124 | +// @RequestParam(value = "hospitalAreaId",required = false) String hospitalAreaId, | |
125 | +// @RequestParam(value = "hospitalId",required = false) String hospitalId,) { | |
126 | +// return visitService.queryNewbornWait(getUserId(request), babyId); | |
127 | +// } | |
116 | 128 | } |