Commit 0336a9f35f3795f5661dcbfd0440875004303734
1 parent
837eae6153
Exists in
master
and in
6 other branches
孕期-在分娩管理中,加一个依据接生医生的搜索框
Showing 2 changed files with 12 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/MatDeliverFacade.java
View file @
0336a9f
... | ... | @@ -2607,6 +2607,7 @@ |
2607 | 2607 | // 分娩方式去另外一张表查 |
2608 | 2608 | patientsQuery.setDesc("fmDate"); |
2609 | 2609 | patientsQuery.setSort("fmDate"); |
2610 | + patientsQuery.setBookbuildingDoctor(StringUtils.isNotEmpty(childbirthManagerRequest.getDeliverDoctor())?childbirthManagerRequest.getDeliverDoctor():null); | |
2610 | 2611 | List <Patients> patientsList = patientsService.queryPatient(patientsQuery); |
2611 | 2612 | |
2612 | 2613 | // 这里就设置分页内容 |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/ChildbirthManagerRequest.java
View file @
0336a9f
... | ... | @@ -190,6 +190,17 @@ |
190 | 190 | //管床大夫 |
191 | 191 | private String gcdfDoctorId; |
192 | 192 | |
193 | + //隆化接生医生 | |
194 | + private String deliverDoctor; | |
195 | + | |
196 | + public String getDeliverDoctor() { | |
197 | + return deliverDoctor; | |
198 | + } | |
199 | + | |
200 | + public void setDeliverDoctor(String deliverDoctor) { | |
201 | + this.deliverDoctor = deliverDoctor; | |
202 | + } | |
203 | + | |
193 | 204 | public String getGcdfDoctorId() { |
194 | 205 | return gcdfDoctorId; |
195 | 206 | } |