Commit c65db95b06f2f551ba1ba215aebb7aa693728081
1 parent
ceb1e7c114
Exists in
dev
#fix:优化档案统计查询新增预产期字段
Showing 1 changed file with 12 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PatientManagerQueryModel.java
View file @
c65db95
1 | 1 | package com.lyms.platform.operate.web.result; |
2 | 2 | |
3 | +import java.util.Date; | |
3 | 4 | import java.util.List; |
4 | 5 | import java.util.Map; |
5 | 6 | |
6 | 7 | |
... | ... | @@ -128,8 +129,10 @@ |
128 | 129 | * 1:卫生与计划生育委员会,2:妇幼保健院/站,3:妇产(科)医院,4:综合医院,5:计生站,6:卫生院,7:卫生所,8:其他 |
129 | 130 | */ |
130 | 131 | private Integer orgType; |
132 | + //预产期 | |
133 | + private Date dueDate; | |
131 | 134 | |
132 | - public Integer getOrgType() { | |
135 | + public Integer getOrgType() { | |
133 | 136 | return orgType; |
134 | 137 | } |
135 | 138 | |
... | ... | @@ -343,6 +346,14 @@ |
343 | 346 | |
344 | 347 | public void setBookbuildingDoctor(String bookbuildingDoctor) { |
345 | 348 | this.bookbuildingDoctor = bookbuildingDoctor; |
349 | + } | |
350 | + | |
351 | + public Date getDueDate() { | |
352 | + return dueDate; | |
353 | + } | |
354 | + | |
355 | + public void setDueDate(Date dueDate) { | |
356 | + this.dueDate = dueDate; | |
346 | 357 | } |
347 | 358 | } |