From 640ff18d2d7f4be02ddb7f8f75e899f05545eb98 Mon Sep 17 00:00:00 2001
From: puzhibing <393733352@qq.com>
Date: 星期一, 05 二月 2024 11:56:52 +0800
Subject: [PATCH] 更新bug修改

---
 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