From 855f9f64da01a0af863c9ba91ed031b4287c611b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=91=A3=E5=AE=8F=E5=AE=87?= Date: Wed, 20 May 2020 16:07:01 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=BA=86poiType?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gradle.properties | 2 +- .../mogo/module/common/entity/MarkerExploreWay.java | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) 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 +