Commit 416356df029c3bf640e298ff5107834746e38f3f
1 parent
22064a7526
Exists in
master
and in
6 other branches
服务同步
Showing 4 changed files with 28 additions and 32 deletions
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/TestController.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/MatDeliverFollowAddRequest.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/MatDeliverFollowQueryRequest.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/worker/BuildSerToPatientSerWorker.java
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/TestController.java
View file @
416356d
... | ... | @@ -148,7 +148,6 @@ |
148 | 148 | //排查本院隐藏建档 |
149 | 149 | patientsQuery.setExtEnable(false); |
150 | 150 | patientsQuery.setBuildTypeNot(1); |
151 | - // patientsQuery.setServiceType(ServiceTypeEnums.ADD_SERVICE.getId()); | |
152 | 151 | patientsQuery.setYn(YnEnums.YES.getId()); |
153 | 152 | patientsQuery.setType(1); |
154 | 153 |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/MatDeliverFollowAddRequest.java
View file @
416356d
... | ... | @@ -143,11 +143,11 @@ |
143 | 143 | /** |
144 | 144 | * 乳房 |
145 | 145 | */ |
146 | - private String breast; | |
146 | + private Integer breast; | |
147 | 147 | /** |
148 | 148 | * 恶露 |
149 | 149 | */ |
150 | - private String lochia; | |
150 | + private Integer lochia; | |
151 | 151 | /** |
152 | 152 | * 子宫 |
153 | 153 | */ |
... | ... | @@ -155,7 +155,7 @@ |
155 | 155 | /** |
156 | 156 | * 伤口 |
157 | 157 | */ |
158 | - private String wound; | |
158 | + private Integer wound; | |
159 | 159 | /** |
160 | 160 | * 其他 |
161 | 161 | */ |
... | ... | @@ -203,6 +203,30 @@ |
203 | 203 | return matdeliverFollowModel; |
204 | 204 | } |
205 | 205 | |
206 | + public Integer getBreast() { | |
207 | + return breast; | |
208 | + } | |
209 | + | |
210 | + public void setBreast(Integer breast) { | |
211 | + this.breast = breast; | |
212 | + } | |
213 | + | |
214 | + public Integer getLochia() { | |
215 | + return lochia; | |
216 | + } | |
217 | + | |
218 | + public void setLochia(Integer lochia) { | |
219 | + this.lochia = lochia; | |
220 | + } | |
221 | + | |
222 | + public Integer getWound() { | |
223 | + return wound; | |
224 | + } | |
225 | + | |
226 | + public void setWound(Integer wound) { | |
227 | + this.wound = wound; | |
228 | + } | |
229 | + | |
206 | 230 | public Date getUpdateDate() { |
207 | 231 | return updateDate; |
208 | 232 | } |
209 | 233 | |
... | ... | @@ -475,36 +499,12 @@ |
475 | 499 | this.bpk = bpk; |
476 | 500 | } |
477 | 501 | |
478 | - public String getBreast() { | |
479 | - return breast; | |
480 | - } | |
481 | - | |
482 | - public void setBreast(String breast) { | |
483 | - this.breast = breast; | |
484 | - } | |
485 | - | |
486 | - public String getLochia() { | |
487 | - return lochia; | |
488 | - } | |
489 | - | |
490 | - public void setLochia(String lochia) { | |
491 | - this.lochia = lochia; | |
492 | - } | |
493 | - | |
494 | 502 | public String getMatrix() { |
495 | 503 | return matrix; |
496 | 504 | } |
497 | 505 | |
498 | 506 | public void setMatrix(String matrix) { |
499 | 507 | this.matrix = matrix; |
500 | - } | |
501 | - | |
502 | - public String getWound() { | |
503 | - return wound; | |
504 | - } | |
505 | - | |
506 | - public void setWound(String wound) { | |
507 | - this.wound = wound; | |
508 | 508 | } |
509 | 509 | |
510 | 510 | public String getOtherDesc() { |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/MatDeliverFollowQueryRequest.java
View file @
416356d
platform-operate-api/src/main/java/com/lyms/platform/operate/web/worker/BuildSerToPatientSerWorker.java
View file @
416356d
... | ... | @@ -83,7 +83,7 @@ |
83 | 83 | patientsMap.put(pt.getId(),1); |
84 | 84 | } |
85 | 85 | if (pt.getServiceType() == null) { |
86 | - System.out.println("跳过数据:"+pt.getId()); | |
86 | + System.out.println("服务类型不存在跳过数据:"+pt.getId()); | |
87 | 87 | continue; |
88 | 88 | } |
89 | 89 | |
... | ... | @@ -143,7 +143,6 @@ |
143 | 143 | |
144 | 144 | List<PatientService> patientServices = patientServiceService.queryPatientService(patientQuery); |
145 | 145 | if (CollectionUtils.isNotEmpty(patientServices)) { |
146 | - System.out.println("增量查询数据存在:"+pt.getId()); | |
147 | 146 | continue; |
148 | 147 | } |
149 | 148 | } |