Commit bbc694ceee003c4b514a16496d402afa641a79db

Authored by jiangjiazhi
1 parent ee2118e3b3

修改新电子病历

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  
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/PostReviewRequest.java View file @ bbc694c
... ... @@ -35,7 +35,7 @@
35 35 //心理状态
36 36 private String psychology;
37 37 //体重
38   - private double weight;
  38 + private Double weight;
39 39 //血压
40 40 private Map bp;
41 41 /**