From 5e6fde594b368b39b260a234505e7e952dca8329 Mon Sep 17 00:00:00 2001 From: chc <1501738723@qq.com> Date: Mon, 8 May 2023 17:59:01 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=BA=97=E9=93=BA=E8=AE=BE=E7=BD=AE?= =?UTF-8?q?=E6=98=AF=E8=87=AA=E6=8F=90=E3=80=81=E6=A5=BC=E5=B1=82=E4=B8=BA?= =?UTF-8?q?=E7=A9=BA=E5=AF=BC=E8=87=B4=E6=97=A0=E6=B3=95=E4=BF=9D=E5=AD=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lili/modules/store/entity/dos/Store.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/framework/src/main/java/cn/lili/modules/store/entity/dos/Store.java b/framework/src/main/java/cn/lili/modules/store/entity/dos/Store.java index ba05c5dc..6ff831b7 100644 --- a/framework/src/main/java/cn/lili/modules/store/entity/dos/Store.java +++ b/framework/src/main/java/cn/lili/modules/store/entity/dos/Store.java @@ -100,6 +100,20 @@ public class Store extends BaseEntity { @ApiModelProperty(value = "udesk IM标识") private String merchantEuid; + public Boolean getPageShow() { + if(pageShow == null){ + return false; + } + return pageShow; + } + + public Boolean getSelfPickFlag() { + if(selfPickFlag == null){ + return false; + } + return selfPickFlag; + } + @ApiModelProperty(value = "默认页面是否开启") private Boolean pageShow; @@ -116,6 +130,8 @@ public class Store extends BaseEntity { descriptionScore = 5.0; goodsNum = 0; collectionNum = 0; + this.selfPickFlag = false; + this.pageShow = false; } public Store(Member member, AdminStoreApplyDTO adminStoreApplyDTO) { @@ -130,6 +146,8 @@ public class Store extends BaseEntity { descriptionScore = 5.0; goodsNum = 0; collectionNum = 0; + this.selfPickFlag = false; + this.pageShow = false; } } \ No newline at end of file