Commit ae2b6e4b4b9ad86e60d816c45eb1dc5eebd9f87c
1 parent
75b1636044
Exists in
master
and in
6 other branches
update
Showing 2 changed files with 2 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/PregnantBuildController.java
View file @
ae2b6e4
... | ... | @@ -707,7 +707,7 @@ |
707 | 707 | @ResponseBody |
708 | 708 | public BaseResponse updateTransientInfo(@RequestParam(required = true) String id, |
709 | 709 | @RequestParam(required = true)String pliveTypeId, |
710 | - @RequestParam(required = true)String liveCardNo) { | |
710 | + @RequestParam(required = false)String liveCardNo) { | |
711 | 711 | return bookbuildingFacade.updateTransientInfo(id, pliveTypeId,liveCardNo); |
712 | 712 | } |
713 | 713 |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BookbuildingFacade.java
View file @
ae2b6e4
... | ... | @@ -3178,7 +3178,7 @@ |
3178 | 3178 | |
3179 | 3179 | public BaseResponse updateTransientInfo(String id, String pliveTypeId, String liveCardNo) { |
3180 | 3180 | BaseResponse br=new BaseResponse(); |
3181 | - if (StringUtils.isEmpty(id)|| StringUtils.isEmpty(pliveTypeId)|| StringUtils.isEmpty(liveCardNo)) { | |
3181 | + if (StringUtils.isEmpty(id)|| StringUtils.isEmpty(pliveTypeId)) { | |
3182 | 3182 | br.setErrorcode(ErrorCodeConstants.PARAMETER_ERROR); |
3183 | 3183 | br.setErrormsg("参数不能为空"); |
3184 | 3184 | return br; |