Merge remote-tracking branch 'origin/feature/v1.0.4' into feature/v1.0.4

This commit is contained in:
tongchenfei
2020-04-13 17:13:16 +08:00

View File

@@ -54,7 +54,7 @@ public class MarkerNoveltyInfo {
this.sn = sn;
}
public class ContentData {
public static class ContentData {
private String content;
private String iconUrl;
private String imgUrl;
@@ -66,6 +66,8 @@ public class MarkerNoveltyInfo {
private boolean desplayHost;
private boolean fabulous;
private String styleType;
//上报类型1-用户上报2-后台上报 3-三方上报
private String uploadType;
public String getContent() {
return content;
@@ -155,6 +157,14 @@ public class MarkerNoveltyInfo {
this.fabulous = fabulous;
}
public String getUploadType() {
return uploadType;
}
public void setUploadType(String uploadType) {
this.uploadType = uploadType;
}
@Override
public String toString() {
return "ContentData{" +
@@ -169,6 +179,7 @@ public class MarkerNoveltyInfo {
", desplayHost=" + desplayHost +
", fabulous=" + fabulous +
", styleType='" + styleType + '\'' +
", uploadType='" + uploadType + '\'' +
'}';
}
}