From 1025ad9c4298dd7b18fe5a9eaa3fdcb199c2f434 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 11:53:32 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=BA=86=E8=BF=9D?= =?UTF-8?q?=E7=AB=A0=E5=81=9C=E8=BD=A6=E7=9A=84=E8=BF=9D=E5=81=9C=E4=BA=BA?= =?UTF-8?q?=E6=95=B0=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../module/common/entity/MarkerExploreWayItem.java | 10 ++++++++++ 1 file changed, 10 insertions(+) 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 f8ab53ca9d..701b8a5d06 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,6 +15,7 @@ public class MarkerExploreWayItem implements Serializable { private String thumbnail; private String url; private String content; + private String illegalCount; public String getThumbnail() { if (TextUtils.isEmpty(thumbnail)) { @@ -46,12 +47,21 @@ public class MarkerExploreWayItem implements Serializable { this.content = content; } + public String getIllegalCount() { + return illegalCount; + } + + public void setIllegalCount(String illegalCount) { + this.illegalCount = illegalCount; + } + @Override public String toString() { return "MarkerExploreWayItem{" + "thumbnail='" + thumbnail + '\'' + ", url='" + url + '\'' + ", content='" + content + '\'' + + ", illegalCount='" + illegalCount + '\'' + '}'; } } 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 2/2] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BA=86=E8=BF=9D?= =?UTF-8?q?=E7=AB=A0=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; }