增加了poiType

This commit is contained in:
董宏宇
2020-05-20 16:07:01 +08:00
parent 684c025624
commit 855f9f64da
2 changed files with 14 additions and 1 deletions

View File

@@ -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

View File

@@ -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 +