增加了poiType
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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 +
|
||||
|
||||
Reference in New Issue
Block a user