增加了新鲜事儿的类型,//上报类型:1-用户上报,2-后台上报 3-三方上报

This commit is contained in:
董宏宇
2020-04-13 16:29:29 +08:00
parent 797d0aac0c
commit 91b1cbfa76

View File

@@ -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 + '\'' +
'}';
}
}