From 17ea036c3cd573190dd8dac580816168643fad07 Mon Sep 17 00:00:00 2001 From: jiangjiazhi Date: Mon, 29 Aug 2016 14:53:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=96=B0=E7=94=B5=E5=AD=90?= =?UTF-8?q?=E7=97=85=E5=8E=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/lyms/platform/operate/web/result/PostReviewResult.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; } -- 1.8.3.1