Commit 270bd88afbe8f95e8145962fdcffc3676e994281
1 parent
91ce465481
Exists in
master
and in
1 other branch
修改新电子病历
Showing 1 changed file with 3 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/SieveFacade.java
View file @
270bd88
| ... | ... | @@ -133,7 +133,9 @@ |
| 133 | 133 | List list = new ArrayList(); |
| 134 | 134 | if(CollectionUtils.isNotEmpty(applyOrderModels)) { |
| 135 | 135 | SieveApplyOrderModel sieveModel = applyOrderModels.get(0); |
| 136 | - list=JsonUtil.jkstr2Obj(sieveModel.getCheckItem(), List.class) ; | |
| 136 | + if(StringUtils.isNotEmpty(sieveModel.getCheckItem())){ | |
| 137 | + list=JsonUtil.jkstr2Obj(sieveModel.getCheckItem(), List.class) ; | |
| 138 | + } | |
| 137 | 139 | } |
| 138 | 140 | return new BaseObjectResponse().setData(list).setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("成功"); |
| 139 | 141 | } |