diff --git a/gradle.properties b/gradle.properties index f2934055d4..25db21eb31 100644 --- a/gradle.properties +++ b/gradle.properties @@ -38,7 +38,7 @@ MOGO_CONNECTION_VERSION=1.1.0.1 MOGO_MODULE_APPS_VERSION=1.1.0.1 MOGO_MODULE_NAVI_VERSION=1.1.0.1 MOGO_MODULE_SHARE_VERSION=1.1.0.1 -MOGO_MODULE_COMMON_VERSION=1.1.0.2 +MOGO_MODULE_COMMON_VERSION=1.1.0.3 MOGO_MODULE_MAIN_VERSION=1.1.0.1 MOGO_MODULE_MAP_VERSION=1.1.0.1 MOGO_MODULE_SERVICE_VERSION=1.1.0.1 diff --git a/modules/mogo-module-common/src/main/java/com/mogo/module/common/entity/MarkerExploreWay.java b/modules/mogo-module-common/src/main/java/com/mogo/module/common/entity/MarkerExploreWay.java index de2d743cca..5fa0fa1798 100644 --- a/modules/mogo-module-common/src/main/java/com/mogo/module/common/entity/MarkerExploreWay.java +++ b/modules/mogo-module-common/src/main/java/com/mogo/module/common/entity/MarkerExploreWay.java @@ -11,6 +11,10 @@ public class MarkerExploreWay implements Serializable { private String type;//卡片类型, private String infoId; + /** + * @see MarkerPoiTypeEnum + */ + private String poiType; private String sn; private MarkerLocation location;//位置信息 private int direction;//方位角度 @@ -130,11 +134,20 @@ public class MarkerExploreWay implements Serializable { this.infoId = infoId; } + public String getPoiType() { + return poiType; + } + + public void setPoiType(String poiType) { + this.poiType = poiType; + } + @Override public String toString() { return "MarkerExploreWay{" + "type='" + type + '\'' + ", infoId='" + infoId + '\'' + + ", poiType='" + poiType + '\'' + ", sn='" + sn + '\'' + ", location=" + location + ", direction=" + direction +