From 10237ff4d493ea28660a5ae80d7cc522c489e629 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=91=A3=E5=AE=8F=E5=AE=87?= Date: Mon, 22 Jun 2020 14:45:22 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BA=86=E8=BF=9D=E7=AB=A0?= =?UTF-8?q?=E4=BA=BA=E6=95=B0=E7=9A=84=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/mogo/module/common/entity/MarkerExploreWayItem.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/mogo-module-common/src/main/java/com/mogo/module/common/entity/MarkerExploreWayItem.java b/modules/mogo-module-common/src/main/java/com/mogo/module/common/entity/MarkerExploreWayItem.java index 701b8a5d06..47f9d1857f 100644 --- a/modules/mogo-module-common/src/main/java/com/mogo/module/common/entity/MarkerExploreWayItem.java +++ b/modules/mogo-module-common/src/main/java/com/mogo/module/common/entity/MarkerExploreWayItem.java @@ -15,7 +15,7 @@ public class MarkerExploreWayItem implements Serializable { private String thumbnail; private String url; private String content; - private String illegalCount; + private double illegalCount; public String getThumbnail() { if (TextUtils.isEmpty(thumbnail)) { @@ -47,11 +47,11 @@ public class MarkerExploreWayItem implements Serializable { this.content = content; } - public String getIllegalCount() { + public double getIllegalCount() { return illegalCount; } - public void setIllegalCount(String illegalCount) { + public void setIllegalCount(double illegalCount) { this.illegalCount = illegalCount; }