Commit 17ea036c3cd573190dd8dac580816168643fad07

Authored by jiangjiazhi
1 parent c9c1902f61

修改新电子病历

Showing 1 changed file with 3 additions and 3 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PostReviewResult.java View file @ 17ea036
... ... @@ -29,7 +29,7 @@
29 29 //心理状态
30 30 private String psychology;
31 31 //体重
32   - private double weight;
  32 + private Double weight;
33 33 //血压
34 34 private Map bp;
35 35 /**
36 36  
... ... @@ -313,11 +313,11 @@
313 313 this.vulva = vulva;
314 314 }
315 315  
316   - public double getWeight() {
  316 + public Double getWeight() {
317 317 return weight;
318 318 }
319 319  
320   - public void setWeight(double weight) {
  320 + public void setWeight(Double weight) {
321 321 this.weight = weight;
322 322 }
323 323