From 7865a1010be2f95faab151d99ecdb095f44c2a08 Mon Sep 17 00:00:00 2001 From: lisy <linlangsur163@163.com> Date: 星期五, 14 七月 2023 16:30:34 +0800 Subject: [PATCH] 修复了积分商城详情页面的门店列表查询;兑换支付todo --- 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