Commit 588181d3cd19e246f3c22aa8a8d8c7688e1dbe36

Authored by dongqin
1 parent a9e19533a2

修复bug

Showing 2 changed files with 6 additions and 6 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyAfterVisitRequest.java View file @ 588181d
... ... @@ -16,7 +16,7 @@
16 16 * 查询号
17 17 */
18 18 //@Size(min = 2, max = 64)
19   - private String querNo;
  19 + private String queryNo;
20 20  
21 21 /**
22 22 * 档案状态
23 23  
... ... @@ -66,12 +66,12 @@
66 66 this.highRiskType = highRiskType;
67 67 }
68 68  
69   - public String getQuerNo() {
70   - return querNo;
  69 + public String getQueryNo() {
  70 + return queryNo;
71 71 }
72 72  
73   - public void setQuerNo(String querNo) {
74   - this.querNo = querNo;
  73 + public void setQueryNo(String queryNo) {
  74 + this.queryNo = queryNo;
75 75 }
76 76  
77 77 public Boolean getRecordStatus() {
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/BabyAfterVisitServiceImpl.java View file @ 588181d
... ... @@ -69,7 +69,7 @@
69 69 */
70 70 @Override
71 71 public BaseResponse getAfterVisitListPage(BabyAfterVisitRequest request, Integer userId) {
72   - String querNo = request.getQuerNo();
  72 + String querNo = request.getQueryNo();
73 73 Query query = new Query();
74 74 String hospitalId = autoMatchFacade.getHospitalId(userId);
75 75 query.addCriteria(Criteria.where("hospitalId").is(hospitalId));