Commit 91a96e85018e8cc834095ace68f3057bf98493ab
1 parent
da2ce95cd2
Exists in
master
and in
6 other branches
update code
Showing 1 changed file with 1 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/BasicConfigController.java
View file @
91a96e8
... | ... | @@ -211,7 +211,7 @@ |
211 | 211 | @RequestMapping(method = RequestMethod.POST, value = "/addCheckItemConfig") |
212 | 212 | @ResponseBody |
213 | 213 | @TokenRequired |
214 | - public BaseResponse addCheckItemConfig(@Valid CheckItemConfig itemConfig,HttpServletRequest request) { | |
214 | + public BaseResponse addCheckItemConfig(@Valid @RequestBody CheckItemConfig itemConfig,HttpServletRequest request) { | |
215 | 215 | return basicConfigFacade.addCheckItemConfig(itemConfig,getUserId(request)); |
216 | 216 | } |
217 | 217 |