Commit 66f4c7167f3b6be1d0a3fc1adddfd8548d13657b
1 parent
bc392853c1
Exists in
master
and in
1 other branch
增加是否通知
Showing 2 changed files with 4 additions and 9 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientFacade.java
View file @
66f4c71
... | ... | @@ -203,6 +203,7 @@ |
203 | 203 | patientsQuery.setPage(riskPatientsQueryRequest.getPage()); |
204 | 204 | patientsQuery.setIsHighRisk(isHighRisk); |
205 | 205 | patientsQuery.setServiceStatus(riskPatientsQueryRequest.getServiceStatus()); |
206 | + patientsQuery.setYn(YnEnums.YES.getId()); | |
206 | 207 | //查询符合条件的孕妇 |
207 | 208 | List<Patients> patientses = patientsService.queryPatient(patientsQuery); |
208 | 209 | List data = new ArrayList<>(); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/RiskPatientsQueryRequest.java
View file @
66f4c71
... | ... | @@ -70,12 +70,12 @@ |
70 | 70 | this.serviceStatus = serviceStatus; |
71 | 71 | } |
72 | 72 | |
73 | - public int getAge() { | |
73 | + public Integer getAge() { | |
74 | 74 | return age; |
75 | 75 | } |
76 | 76 | |
77 | - public void setAge(int age) { | |
78 | - this.age = age; | |
77 | + public Integer gethScore() { | |
78 | + return hScore; | |
79 | 79 | } |
80 | 80 | |
81 | 81 | public String getCardNo() { |
82 | 82 | |
... | ... | @@ -102,13 +102,7 @@ |
102 | 102 | this.dueWeek = dueWeek; |
103 | 103 | } |
104 | 104 | |
105 | - public int gethScore() { | |
106 | - return hScore; | |
107 | - } | |
108 | 105 | |
109 | - public void sethScore(int hScore) { | |
110 | - this.hScore = hScore; | |
111 | - } | |
112 | 106 | |
113 | 107 | public String getName() { |
114 | 108 | return name; |