完成了在线车辆查询的增量绘制

This commit is contained in:
董宏宇
2020-01-17 18:55:00 +08:00
parent fca7651927
commit 4eb6eacdea
2 changed files with 37 additions and 18 deletions

View File

@@ -7,6 +7,7 @@ import java.util.List;
@SuppressWarnings("unused")
public class MarkerCardResult implements Serializable {
private List<String> dataType; // 要查询的类型
private List<MarkerCarChat> carChat;
private List<MarkerExploreWay> exploreWay;
private List<MarkerOnlineCar> onlineCar;
@@ -53,10 +54,19 @@ public class MarkerCardResult implements Serializable {
this.noveltyInfo = noveltyInfo;
}
public List<String> getDataType() {
return dataType;
}
public void setDataType(List<String> dataType) {
this.dataType = dataType;
}
@Override
public String toString() {
return "MarkerCardResult{" +
"carChat=" + carChat +
"dataType=" + dataType +
", carChat=" + carChat +
", exploreWay=" + exploreWay +
", onlineCar=" + onlineCar +
", shareMusic=" + shareMusic +