Commit 3e92e4660e657ad8956d64996e4acf894427edf1
1 parent
e0c88dfe7e
Exists in
master
and in
1 other branch
增加是否通知
Showing 1 changed file with 3 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/ApplyOrderController.java
View file @
3e92e46
| ... | ... | @@ -35,6 +35,7 @@ |
| 35 | 35 | //查询转诊申请单 |
| 36 | 36 | @RequestMapping(method = RequestMethod.GET,value = "/referralapply") |
| 37 | 37 | @ResponseBody |
| 38 | + @TokenRequired | |
| 38 | 39 | public BaseResponse queryReferralApplyOrder(@RequestParam("id") String id) { |
| 39 | 40 | if(StringUtils.isEmpty(id)){ |
| 40 | 41 | return new BaseResponse().setErrorcode(ErrorCodeConstants.PARAMETER_ERROR).setErrormsg("id不能为空."); |
| 41 | 42 | |
| ... | ... | @@ -62,12 +63,14 @@ |
| 62 | 63 | |
| 63 | 64 | @RequestMapping(method = RequestMethod.POST,value = "/sieveapply") |
| 64 | 65 | @ResponseBody |
| 66 | + @TokenRequired | |
| 65 | 67 | //增加产筛申请单 |
| 66 | 68 | public BaseResponse addSieveApplyOrder(@Valid @RequestBody SieveApplyOrderAddRequest applyOrderAddRequest) { |
| 67 | 69 | return applyOrderFacade.addOneSieveApplyOrder(applyOrderAddRequest); |
| 68 | 70 | } |
| 69 | 71 | @RequestMapping(method = RequestMethod.GET,value = "/sieveapply") |
| 70 | 72 | @ResponseBody |
| 73 | + @TokenRequired | |
| 71 | 74 | //查询转诊申请单 |
| 72 | 75 | public BaseResponse querySieveApplyOrder(@RequestParam("id") String id) { |
| 73 | 76 | if(StringUtils.isEmpty(id)){ |