luofl
2025-04-03 a78ac968018e42634cfb37a6a1ef3aa2dd10acc9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package com.dsh.communityWorldCup.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 lombok.Data;
 
/**
 * 社区世界杯门店
 * @author zhibing.pu
 * @Date 2024/2/18 18:06
 */
@Data
@TableName("t_world_cup_store")
public class WorldCupStore {
    /**
     * 主键
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    /**
     * 世界杯id
     */
    @TableField("worldCupId")
    private Integer worldCupId;
    /**
     * 门店id
     */
    @TableField("storeId")
    private Integer storeId;
    /**
     * 是否开启世界杯按钮(0=否,1=是)
     */
    @TableField("isOpen")
    private Integer isOpen;
    /**
     * 世界杯入口背景图
     */
    @TableField("backgroundImage")
    private String backgroundImage;
    /**
     * 排序
     */
    @TableField("sort")
    private Integer sort;
 
    @TableField("displayType")
    private Integer displayType;
 
}