diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PostReviewResult.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PostReviewResult.java index 84d6fa1..96de4e8 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PostReviewResult.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PostReviewResult.java @@ -29,7 +29,7 @@ public class PostReviewResult implements Serializable{ //心理状态 private String psychology; //体重 - private double weight; + private Double weight; //血压 private Map bp; /** @@ -313,11 +313,11 @@ public class PostReviewResult implements Serializable{ this.vulva = vulva; } - public double getWeight() { + public Double getWeight() { return weight; } - public void setWeight(double weight) { + public void setWeight(Double weight) { this.weight = weight; }