From 7ff5654d9ee4108101f1c73e7f4f61c48fdd19e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=91=A3=E5=AE=8F=E5=AE=87?= Date: Wed, 26 Feb 2020 16:58:49 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=9C=A8=E7=BA=BF=E8=BD=A6?= =?UTF-8?q?=E8=BE=86=E5=B1=95=E7=A4=BA=E9=80=BB=E8=BE=91=20=20=20=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E6=96=B0=E9=B2=9C=E4=BA=8B=E5=84=BF=E5=AD=97=E6=AE=B5?= =?UTF-8?q?fabulous?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mogo/module/common/entity/MarkerNoveltyInfo.java | 10 ++++++++++ 1 file changed, 10 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 ff3e92177d..0ea6d4e7e9 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 @@ -64,6 +64,7 @@ public class MarkerNoveltyInfo { private String gasPrices; private boolean displayNavigation; private boolean desplayHost; + private boolean fabulous; private String styleType; public String getContent() { @@ -146,6 +147,14 @@ public class MarkerNoveltyInfo { this.desplayHost = desplayHost; } + public boolean isFabulous() { + return fabulous; + } + + public void setFabulous(boolean fabulous) { + this.fabulous = fabulous; + } + @Override public String toString() { return "ContentData{" + @@ -158,6 +167,7 @@ public class MarkerNoveltyInfo { ", gasPrices='" + gasPrices + '\'' + ", displayNavigation=" + displayNavigation + ", desplayHost=" + desplayHost + + ", fabulous=" + fabulous + ", styleType='" + styleType + '\'' + '}'; }