增加了探路数据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

2
.idea/misc.xml generated
View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" project-jdk-name="JDK" project-jdk-type="JavaSDK">
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" />
</component>
</project>

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 +
'}';
}
}