Commit 94866c2b9b9b86f3b14a5f0e3924a14e682a197a
1 parent
e5d0f1d004
Exists in
master
and in
1 other branch
1
Showing 2 changed files with 14 additions and 0 deletions
platform-dal/src/main/java/com/lyms/platform/query/ReferralApplyOrderQuery.java
View file @
94866c2
... | ... | @@ -37,7 +37,16 @@ |
37 | 37 | //转入医院 |
38 | 38 | private String transferredHospital; |
39 | 39 | private String outHospitalId; |
40 | + private String phone; | |
40 | 41 | |
42 | + public String getPhone() { | |
43 | + return phone; | |
44 | + } | |
45 | + | |
46 | + public void setPhone(String phone) { | |
47 | + this.phone = phone; | |
48 | + } | |
49 | + | |
41 | 50 | public String getOutHospitalId() { |
42 | 51 | return outHospitalId; |
43 | 52 | } |
... | ... | @@ -71,6 +80,9 @@ |
71 | 80 | } |
72 | 81 | if(null!=transferredHospital){ |
73 | 82 | condition=condition.and("transferredHospital",transferredHospital, MongoOper.IS); |
83 | + } | |
84 | + if(null!=phone){ | |
85 | + condition=condition.and("phone",phone, MongoOper.IS); | |
74 | 86 | } |
75 | 87 | if(null!=outHospitalId){ |
76 | 88 | condition=condition.and("outHospitalId",outHospitalId, MongoOper.IS); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ApplyOrderFacade.java
View file @
94866c2
... | ... | @@ -124,6 +124,8 @@ |
124 | 124 | referralApplyOrderQuery.setScore(applyOrderQueryRequest.getScore()); |
125 | 125 | referralApplyOrderQuery.setCardNo(applyOrderQueryRequest.getCardNo()); |
126 | 126 | referralApplyOrderQuery.setPage(applyOrderQueryRequest.getPage()); |
127 | + referralApplyOrderQuery.setPhone(applyOrderQueryRequest.getPhone()); | |
128 | + referralApplyOrderQuery.setTransferredHospital(applyOrderQueryRequest.getTransferredHospital()); | |
127 | 129 | referralApplyOrderQuery.setLimit(applyOrderQueryRequest.getLimit()); |
128 | 130 | //1 转入 0转出 |
129 | 131 | if ("1".equals(applyOrderQueryRequest.getType())) { |