增加了 uploadType

This commit is contained in:
董宏宇
2020-05-20 16:15:20 +08:00
parent 855f9f64da
commit 958cac170c
2 changed files with 13 additions and 2 deletions

View File

@@ -26,6 +26,8 @@ public class MarkerExploreWay implements Serializable {
private double distance;//距离
private MarkerUserInfo userInfo;//用户信息
private List<MarkerExploreWayItem> items;//视频地址和图片地址
//上报类型1-用户上报2-后台上报 3-三方上报
private String uploadType;
public String getAddr() {
if (TextUtils.isEmpty(addr)) {
@@ -142,6 +144,14 @@ public class MarkerExploreWay implements Serializable {
this.poiType = poiType;
}
public String getUploadType() {
return uploadType;
}
public void setUploadType(String uploadType) {
this.uploadType = uploadType;
}
@Override
public String toString() {
return "MarkerExploreWay{" +
@@ -159,6 +169,7 @@ public class MarkerExploreWay implements Serializable {
", distance=" + distance +
", userInfo=" + userInfo +
", items=" + items +
", uploadType='" + uploadType + '\'' +
'}';
}
}