Commit 13598f1042ef1670a1c58475d1e4dab3887dd1d7
1 parent
e910ec2ca7
Exists in
master
and in
1 other branch
修改新电子病历
Showing 3 changed files with 7 additions and 5 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ApplyOrderFacade.java
View file @
13598f1
| ... | ... | @@ -357,8 +357,10 @@ |
| 357 | 357 | if (null != applyOrderQueryRequest.getTyVip() && Boolean.TRUE.equals(applyOrderQueryRequest.getTyVip())) { |
| 358 | 358 | referralApplyOrderQuery.setExpVip(1); |
| 359 | 359 | } |
| 360 | + referralApplyOrderQuery.setPage(applyOrderQueryRequest.getPage()); | |
| 361 | + referralApplyOrderQuery.setLimit(applyOrderQueryRequest.getLimit()); | |
| 362 | + referralApplyOrderQuery.setNeed("1"); | |
| 360 | 363 | |
| 361 | - | |
| 362 | 364 | /* if(null!=applyOrderQueryRequest.getStartScore()){ |
| 363 | 365 | referralApplyOrderQuery.setScoreStart(applyOrderQueryRequest.getStartScore()); |
| 364 | 366 | } |
| ... | ... | @@ -407,7 +409,7 @@ |
| 407 | 409 | babyApplyOrderResults.add(babyApplyOrderResult); |
| 408 | 410 | } |
| 409 | 411 | } |
| 410 | - return new BaseListResponse().setData(babyApplyOrderResults).setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("成功"); | |
| 412 | + return new BaseListResponse().setData(babyApplyOrderResults).setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("成功").setPageInfo(referralApplyOrderQuery.getPageInfo()); | |
| 411 | 413 | } |
| 412 | 414 | |
| 413 | 415 | /** |
| ... | ... | @@ -502,7 +504,7 @@ |
| 502 | 504 | data.add(applyOrderResult); |
| 503 | 505 | } |
| 504 | 506 | } |
| 505 | - return new BaseListResponse().setData(data).setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("成功"); | |
| 507 | + return new BaseListResponse().setData(data).setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("成功").setPageInfo(referralApplyOrderQuery.getPageInfo()); | |
| 506 | 508 | } |
| 507 | 509 | |
| 508 | 510 | public BaseResponse getEnums() { |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/SieveFacade.java
View file @
13598f1
| ... | ... | @@ -187,7 +187,7 @@ |
| 187 | 187 | data.add(sieveListResult); |
| 188 | 188 | } |
| 189 | 189 | } |
| 190 | - return new BaseListResponse().setData(data).setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("成功"); | |
| 190 | + return new BaseListResponse().setData(data).setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("成功").setPageInfo(sieveQuery.getPageInfo()); | |
| 191 | 191 | } |
| 192 | 192 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyApplyOrderQueryRequest.java
View file @
13598f1