Commit 13598f1042ef1670a1c58475d1e4dab3887dd1d7

Authored by jiangjiazhi
1 parent e910ec2ca7

修改新电子病历

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
... ... @@ -6,7 +6,7 @@
6 6 *
7 7 * Created by Administrator on 2016/7/14 0014.
8 8 */
9   -public class BabyApplyOrderQueryRequest {
  9 +public class BabyApplyOrderQueryRequest extends BasePageQueryRequest{
10 10  
11 11 //母亲身份证号
12 12 private String mCardNo;