Merge branch 'dev' of gitlab.zhidaoauto.com:ecos/yycp-service/Launcher into dev

This commit is contained in:
wangcongtao
2020-06-16 17:06:24 +08:00
21 changed files with 292 additions and 49 deletions

View File

@@ -1,11 +1,13 @@
package com.mogo.module.common.entity;
import com.mogo.commons.data.BaseData;
import java.io.Serializable;
import java.util.List;
@SuppressWarnings("unused")
public class MarkerCardResult implements Serializable {
public class MarkerCardResult extends BaseData {
private List<String> dataType; // 要查询的类型
private List<MarkerCarChat> carChat;

View File

@@ -6,11 +6,15 @@ import android.text.TextUtils;
import java.io.Serializable;
/**
* 道路情报V2X预警地图道路事件POI违章停车POI等
*/
@SuppressWarnings("unused")
public class MarkerExploreWayItem implements Serializable {
private String thumbnail;
private String url;
private String content;
public String getThumbnail() {
if (TextUtils.isEmpty(thumbnail)) {
@@ -34,11 +38,20 @@ public class MarkerExploreWayItem implements Serializable {
this.url = url;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
@Override
public String toString() {
return "MarkerExploreWayItem{" +
"thumbnail='" + thumbnail + '\'' +
", url='" + url + '\'' +
", content='" + content + '\'' +
'}';
}
}

View File

@@ -9,33 +9,35 @@ package com.mogo.module.common.entity;
*/
public interface MarkerPoiTypeEnum {
//加油站
public String GAS_STATION = "10001";
String GAS_STATION = "10001";
//交通检查
public String TRAFFIC_CHECK = "10002";
String TRAFFIC_CHECK = "10002";
//封路
public String ROAD_CLOSED = "10003";
String ROAD_CLOSED = "10003";
//商场打折
public String SHOP_DISCOUNT = "10004";
String SHOP_DISCOUNT = "10004";
//4S店
public String FOURS_4S = "10005";
String FOURS_4S = "10005";
//施工
public String FOURS_ROAD_WORK = "10006";
String FOURS_ROAD_WORK = "10006";
//拥堵
public String FOURS_BLOCK_UP = "10007";
String FOURS_BLOCK_UP = "10007";
//积水
public String FOURS_PONDING = "10008";
String FOURS_PONDING = "10008";
//超市打折
public String FOURS_SHOP_FREE = "10009";
String FOURS_SHOP_FREE = "10009";
//浓雾
public String FOURS_FOG = "10010";
String FOURS_FOG = "10010";
//结冰
public String FOURS_ICE = "10011";
String FOURS_ICE = "10011";
//停车场
public String FOURS_PARKING = "10012";
String FOURS_PARKING = "10012";
//事故
public String FOURS_ACCIDENT = "10013";
String FOURS_ACCIDENT = "10013";
//身边
public String FOURS_NEALY = "10014";
String FOURS_NEALY = "10014";
//实时路况
public String FOURS_LIVING = "10015";
String FOURS_LIVING = "10015";
//违章停车
String ILLEGAL_PARK_LIVING = "10016";
}