Commit f0fb5c27946163c233728bd537ac75669c4d85a4
1 parent
ea213ea9e1
Exists in
master
and in
6 other branches
查询号条件
Showing 3 changed files with 13 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AntExRecordFacade.java
View file @
f0fb5c2
... | ... | @@ -233,6 +233,8 @@ |
233 | 233 | parentIds.add(pa.getId()); |
234 | 234 | } |
235 | 235 | antExRecordQuery.setParentIds(parentIds); |
236 | + }else{ | |
237 | + return new BaseListResponse().setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("成功").setPageInfo(antExRecordQuery.getPageInfo()); | |
236 | 238 | } |
237 | 239 | |
238 | 240 | String hospital = autoMatchFacade.getHospitalId(userId); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ResidentsFacade.java
View file @
f0fb5c2
... | ... | @@ -4,7 +4,6 @@ |
4 | 4 | import com.lyms.platform.common.constants.ErrorCodeConstants; |
5 | 5 | import com.lyms.platform.common.enums.YnEnums; |
6 | 6 | import com.lyms.platform.common.result.BaseListResponse; |
7 | -import com.lyms.platform.common.result.BaseObjectResponse; | |
8 | 7 | import com.lyms.platform.common.result.BaseResponse; |
9 | 8 | import com.lyms.platform.common.utils.*; |
10 | 9 | import com.lyms.platform.operate.web.request.ResidentsArchiveQueryRequest; |
... | ... | @@ -69,6 +68,7 @@ |
69 | 68 | ResidentsArchiveQuery query = new ResidentsArchiveQuery(); |
70 | 69 | query.setPage(request.getPage()); |
71 | 70 | query.setLimit(request.getLimit()); |
71 | + query.setQueryNo(request.getQueryNo()); | |
72 | 72 | query.setNeed("y"); |
73 | 73 | query.setYn(YnEnums.YES.getId()); |
74 | 74 | query.setSex(SystemConfig.WOMAN_ID); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/ResidentsArchiveQueryRequest.java
View file @
f0fb5c2
... | ... | @@ -44,6 +44,16 @@ |
44 | 44 | private String age; |
45 | 45 | //出生日期(范围值 1991-01-01 - 1994-02-02 ) |
46 | 46 | private String birthday; |
47 | + //查询号 | |
48 | + private String queryNo; | |
49 | + | |
50 | + public String getQueryNo() { | |
51 | + return queryNo; | |
52 | + } | |
53 | + | |
54 | + public void setQueryNo(String queryNo) { | |
55 | + this.queryNo = queryNo; | |
56 | + } | |
47 | 57 | |
48 | 58 | public String getBuildProvinceId() { |
49 | 59 | return buildProvinceId; |