无关风月
2025-05-08 9486766c806fe1d9e082b2fd02ea1cc558f1b443
cloud-server-other/src/main/java/com/dsh/other/entity/HomeModule.java
@@ -1,9 +1,6 @@
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.annotation.*;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@@ -29,6 +26,8 @@
    @TableField("title")
    @ApiModelProperty("标题")
    private String title;
    @TableField(exist = false)
    private String name;
    /**
     * 置顶(0=否,1=是)
     */
@@ -51,33 +50,44 @@
    @ApiModelProperty("按钮图片")
    private String buttonImage;
    /**
     * 跳转模块(0=不跳转,1=加入玩湃,2=开始课程,3=使用福利,4=探索玩湃)
     */
    @TableField("jumpModule")
    @ApiModelProperty("跳转模块(0=不跳转,1=加入玩湃,2=开始课程,3=使用福利,4=探索玩湃)")
    private Integer jumpModule;
    /**
     * 跳转页面(1=主页,2=课程列表,3=赛事活动列表,4=线上课得积分,5=看视频得奖励,6=预约场地,7=智慧球场,8=成为会员,9=充值中心,10=积分商城,11=本周福利,12=门店列表,13=常见问题,14=公告发布)
     */
    @TableField("jumpPage")
    @ApiModelProperty("跳转页面(1=主页,2=课程列表,3=赛事活动列表,4=线上课得积分,5=看视频得奖励,6=预约场地,7=智慧球场,8=成为会员,9=充值中心,10=积分商城,11=本周福利,12=门店列表,13=常见问题,14=公告发布)")
    private Integer jumpPage;
    /**
     * 跳转类型(1=主页,2=列表,3=详情,4=限时折扣,5=赠送课时,6=指定折扣)
     */
    @TableField("jumpType")
    @ApiModelProperty("跳转类型(1=主页,2=列表,3=详情,4=限时折扣,5=赠送课时,6=指定折扣)")
    private Integer jumpType;
    /**
     * 跳转详情id
     */
    @TableField("detailID")
    @ApiModelProperty("跳转详情id")
    private String detailID;
    /**
     * 富文本内容
     */
    @TableField("content")
    @ApiModelProperty("富文本内容")
    private String content;
    /**
     * 跳转页面id
     */
    @TableField("jumpPage")
    private Integer jumpPage;
    /**
     * 跳转模块
     */
    @TableField("model")
    private String model;
    /**
     * 跳转类型
     */
    @TableField("type")
    private String type;
    /**
     * 跳转类型
     */
    @TableField("turnId")
    private String turnId;
    /**
     * 跳转页面
     */
    @TableField("page")
    private String page;
    /**
     * 跳转类型id
     */
    @TableField("typeId")
    private Integer typeId;
    /**
     * 展示类型 1:横屏 2:竖屏
     */
    @TableField("displayType")
    private Integer displayType;
}