add product manager

This commit is contained in:
wangcongtao
2020-05-21 14:49:30 +08:00
parent 9c7042246c
commit e1a83c6b8f
35 changed files with 360 additions and 353 deletions

View File

@@ -9,11 +9,12 @@ public class MarkerCardResult implements Serializable {
private List<String> dataType; // 要查询的类型
private List<MarkerCarChat> carChat;
private List<MarkerExploreWay> exploreWay;
private List<MarkerOnlineCar> onlineCar;
private List<MarkerShareMusic> shareMusic;
private List<MarkerNoveltyInfo> noveltyInfo;
private List<MarkerOnlineCar> onlineCar;
private List<MarkerExploreWay> exploreWay;
public List<MarkerCarChat> getCarChat() {
return carChat;
}

View File

@@ -9,6 +9,7 @@ import java.util.List;
@SuppressWarnings("unused")
public class MarkerExploreWay implements Serializable {
private String infoId;
private String type;//卡片类型,
private String sn;
private MarkerLocation location;//位置信息
@@ -20,6 +21,7 @@ public class MarkerExploreWay implements Serializable {
private String cityName;//:"城市名称",
private double distance;//距离
private MarkerUserInfo userInfo;//用户信息
private String poiType;
private List<MarkerExploreWayItem> items;//视频地址和图片地址
public String getAddr() {
@@ -121,6 +123,20 @@ public class MarkerExploreWay implements Serializable {
this.userInfo = userInfo;
}
public String getPoiType() {
return poiType;
}
public String getInfoId() {
return infoId;
}
public MarkerExploreWay setInfoId( String infoId ) {
this.infoId = infoId;
return this;
}
@Override
public String toString() {
return "MarkerExploreWay{" +

View File

@@ -36,4 +36,6 @@ public interface MarkerPoiTypeEnum {
public String FOURS_ACCIDENT = "10013";
//身边
public String FOURS_NEALY = "10014";
//实时路况
public String FOURS_LIVING = "10015";
}