增加了探路数据ID

This commit is contained in:
董宏宇
2020-05-20 15:57:22 +08:00
parent 9c7042246c
commit f18586e102
2 changed files with 21 additions and 11 deletions

View File

@@ -10,6 +10,7 @@ import java.util.List;
public class MarkerExploreWay implements Serializable {
private String type;//卡片类型,
private String infoId;
private String sn;
private MarkerLocation location;//位置信息
private int direction;//方位角度
@@ -121,21 +122,30 @@ public class MarkerExploreWay implements Serializable {
this.userInfo = userInfo;
}
public String getInfoId() {
return infoId;
}
public void setInfoId(String infoId) {
this.infoId = infoId;
}
@Override
public String toString() {
return "MarkerExploreWay{" +
"addr='" + addr + '\'' +
", canLive=" + canLive +
", cityName='" + cityName + '\'' +
", direction=" + direction +
", distance=" + distance +
", fileType=" + fileType +
", generateTime=" + generateTime +
", items=" + items +
", location=" + location +
"type='" + type + '\'' +
", infoId='" + infoId + '\'' +
", sn='" + sn + '\'' +
", type='" + type + '\'' +
", location=" + location +
", direction=" + direction +
", canLive=" + canLive +
", fileType=" + fileType +
", addr='" + addr + '\'' +
", generateTime=" + generateTime +
", cityName='" + cityName + '\'' +
", distance=" + distance +
", userInfo=" + userInfo +
", items=" + items +
'}';
}
}