From acad524bfb7f376c09ff8e6600fab207780156e1 Mon Sep 17 00:00:00 2001 From: 44323 <443237572@qq.com> Date: 星期四, 23 十一月 2023 18:46:05 +0800 Subject: [PATCH] Merge branch 'master' of http://120.76.84.145:10101/gitblit/r/java/PlayPai --- cloud-server-other/src/main/java/com/dsh/other/entity/StoreConfig.java | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/cloud-server-other/src/main/java/com/dsh/other/entity/StoreConfig.java b/cloud-server-other/src/main/java/com/dsh/other/entity/StoreConfig.java index 9872e04..dd34af5 100644 --- a/cloud-server-other/src/main/java/com/dsh/other/entity/StoreConfig.java +++ b/cloud-server-other/src/main/java/com/dsh/other/entity/StoreConfig.java @@ -1,6 +1,7 @@ package com.dsh.other.entity; import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.extension.activerecord.Model; @@ -34,22 +35,27 @@ /** * 门店id */ + @TableField("storeId") private Integer storeId; /** * 数据类型(1=报名玩湃课程,2=预约场地,3=报名赛事及活动,4=免费福利,5=线上课程积分,6=购买优惠门票,7=看视频得奖励,8=智慧球场) */ + @TableField("type") private Integer type; /** * 是否开启(0=否,1=是) */ + @TableField("isOpen") private Integer isOpen; /** * 排序 */ + @TableField("sort") private Integer sort; /** * 背景图 */ + @TableField("backgroundImage") private String backgroundImage; -- Gitblit v1.7.1