Commit bbc694ceee003c4b514a16496d402afa641a79db
1 parent
ee2118e3b3
Exists in
master
and in
1 other branch
修改新电子病历
Showing 2 changed files with 4 additions and 4 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/PostReviewModel.java
View file @
bbc694c
... | ... | @@ -26,7 +26,7 @@ |
26 | 26 | //心理状态 |
27 | 27 | private String psychology; |
28 | 28 | //体重 |
29 | - private double weight; | |
29 | + private Double weight; | |
30 | 30 | //血压 |
31 | 31 | private String bp; |
32 | 32 | /** |
33 | 33 | |
... | ... | @@ -323,11 +323,11 @@ |
323 | 323 | this.vulva = vulva; |
324 | 324 | } |
325 | 325 | |
326 | - public double getWeight() { | |
326 | + public Double getWeight() { | |
327 | 327 | return weight; |
328 | 328 | } |
329 | 329 | |
330 | - public void setWeight(double weight) { | |
330 | + public void setWeight(Double weight) { | |
331 | 331 | this.weight = weight; |
332 | 332 | } |
333 | 333 |