Commit ee98a6a2ba0282b2c5446ef2ed974d47463b3f54
1 parent
c81c633ebf
Exists in
master
and in
1 other branch
update
Showing 1 changed file with 6 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyBookbuildingFacade.java
View file @
ee98a6a
| ... | ... | @@ -510,8 +510,12 @@ |
| 510 | 510 | } |
| 511 | 511 | |
| 512 | 512 | setRiskCode(request.getId()); |
| 513 | - | |
| 514 | - return new BaseResponse().setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("成功"); | |
| 513 | + BaseObjectResponse br = new BaseObjectResponse(); | |
| 514 | + br.setErrorcode(ErrorCodeConstants.SUCCESS); | |
| 515 | + br.setErrormsg("成功"); | |
| 516 | + br.setData(model.getId()); | |
| 517 | + return br; | |
| 518 | +// return new BaseResponse().setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("成功"); | |
| 515 | 519 | } |
| 516 | 520 | |
| 517 | 521 | /** |