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; }