From fcff40f72bf0571db5a83438840998602d613721 Mon Sep 17 00:00:00 2001 From: wangw <1594593906@qq.com> Date: Wed, 28 Aug 2024 15:44:33 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BA=97=E9=93=BA=E6=89=A9=E5=B1=95=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=20=E5=88=9D=E5=A7=8B=E5=8C=96=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../cn/ysk/cashier/mybatis/entity/TbShopExtend.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/eladmin-system/src/main/java/cn/ysk/cashier/mybatis/entity/TbShopExtend.java b/eladmin-system/src/main/java/cn/ysk/cashier/mybatis/entity/TbShopExtend.java index a62e1c00..60543697 100644 --- a/eladmin-system/src/main/java/cn/ysk/cashier/mybatis/entity/TbShopExtend.java +++ b/eladmin-system/src/main/java/cn/ysk/cashier/mybatis/entity/TbShopExtend.java @@ -25,6 +25,7 @@ public class TbShopExtend extends Model { private String autokey; //值 private String value; + private String detail; //更新时间 private Date updateTime; //创建时间 @@ -96,6 +97,14 @@ public class TbShopExtend extends Model { } + public String getDetail() { + return detail; + } + + public void setDetail(String detail) { + this.detail = detail; + } + /** * index_bg:店铺首页背景图 * my_bg: 我的页面背景图 @@ -108,15 +117,19 @@ public class TbShopExtend extends Model { switch (autokey) { case "index_bg": this.name = "店铺首页背景图"; + this.detail="建议尺寸: 375*600 "; break; case "my_bg": this.name = "我的页面背景图"; + this.detail="建议尺寸: 375*200"; break; case "member_bg": this.name = "会员卡页面背景图"; + this.detail="建议尺寸: 315*152"; break; case "shopinfo_bg": this.name = "商品列表顶部背景图"; + this.detail="建议尺寸: 375*120"; break; } }