Commit 073a34ed5d7917238acab363e13739dd59798322
1 parent
f902b7d6bf
Exists in
master
and in
6 other branches
体重报告限制一周功能
(cherry picked from commit ff1e434954ec253db942d73134951ef724da2b97) # Conflicts: # platform-dal/src/main/java/com/lyms/platform/pojo/PatientWeight.java
Showing 1 changed file with 13 additions and 1 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/PatientWeight.java
View file @
073a34e
... | ... | @@ -10,7 +10,7 @@ |
10 | 10 | /** |
11 | 11 | * 孕产妇体重管理 |
12 | 12 | */ |
13 | -@Document(collection = "lyms_patient_weight") | |
13 | +@Document(collection="lyms_patient_weight") | |
14 | 14 | public class PatientWeight extends BaseModel { |
15 | 15 | |
16 | 16 | @Transient |
... | ... | @@ -143,6 +143,18 @@ |
143 | 143 | public void setPrinting(boolean printing) { |
144 | 144 | this.printing = printing; |
145 | 145 | } |
146 | + | |
147 | + public Date getPrintingTime() { | |
148 | + return printingTime; | |
149 | + } | |
150 | + | |
151 | + public void setPrintingTime(Date printingTime) { | |
152 | + this.printingTime = printingTime; | |
153 | + } | |
154 | + | |
155 | + //打印时间 | |
156 | + private Date printingTime; | |
157 | + | |
146 | 158 | |
147 | 159 | public Date getPrintingTime() { |
148 | 160 | return printingTime; |