From 91b1cbfa7658c5eec67ea3b40fd421fa9e43d34d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=91=A3=E5=AE=8F=E5=AE=87?= Date: Mon, 13 Apr 2020 16:29:29 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=BA=86=E6=96=B0=E9=B2=9C?= =?UTF-8?q?=E4=BA=8B=E5=84=BF=E7=9A=84=E7=B1=BB=E5=9E=8B=EF=BC=8C//?= =?UTF-8?q?=E4=B8=8A=E6=8A=A5=E7=B1=BB=E5=9E=8B=EF=BC=9A1-=E7=94=A8?= =?UTF-8?q?=E6=88=B7=E4=B8=8A=E6=8A=A5=EF=BC=8C2-=E5=90=8E=E5=8F=B0?= =?UTF-8?q?=E4=B8=8A=E6=8A=A5=203-=E4=B8=89=E6=96=B9=E4=B8=8A=E6=8A=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mogo/module/common/entity/MarkerNoveltyInfo.java | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/modules/mogo-module-common/src/main/java/com/mogo/module/common/entity/MarkerNoveltyInfo.java b/modules/mogo-module-common/src/main/java/com/mogo/module/common/entity/MarkerNoveltyInfo.java index 0ea6d4e7e9..69a2e3d46c 100644 --- a/modules/mogo-module-common/src/main/java/com/mogo/module/common/entity/MarkerNoveltyInfo.java +++ b/modules/mogo-module-common/src/main/java/com/mogo/module/common/entity/MarkerNoveltyInfo.java @@ -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 + '\'' + '}'; } }