dangsn
2024-12-25 2f8555410f031e66ee91ee60f64d1cc9a34cc7d9
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
package com.vci.model;
 
import com.vci.constant.BtmIdConstant;
import com.vci.starter.web.annotation.VciBtmType;
import com.vci.starter.web.constant.FrameWorkLcStatusConstant;
import com.vci.starter.web.model.BaseModel;
 
/**
 * @Description 首页配置功能
 * @Author dangsn
 * @Date 2024/12/24 15:05
 */
@VciBtmType(name = BtmIdConstant.BD_HOME_CONFIG,text = "首页配置功能",lifeCycle = FrameWorkLcStatusConstant.EMTYPE_LIFE_CYCLE)
public class BdHomeConfigDO extends BaseModel {
 
    /**
     * 序列化
     */
    private static final long serialVersionUID = -6291865953564163287L;
 
    /**
     * 组件
     */
    private String module;
 
    /**
     * 标题
     */
    private String title;
 
    /**
     * 图标
     */
    private String icon;
 
    /**
     * 列数
     */
    private Integer num;
 
    /**
     * 占比
     */
    private Double ratio;
 
    /**
     * 排序号
     */
    private Integer orderNum;
 
    /**
     * 人员账号
     */
    private String userId;
 
    /**
     * 人员姓名
     */
    private String userName;
 
    public String getModule() {
        return module;
    }
 
    public void setModule(String module) {
        this.module = module;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getIcon() {
        return icon;
    }
 
    public void setIcon(String icon) {
        this.icon = icon;
    }
 
    public Integer getNum() {
        return num;
    }
 
    public void setNum(Integer num) {
        this.num = num;
    }
 
    public Double getRatio() {
        return ratio;
    }
 
    public void setRatio(Double ratio) {
        this.ratio = ratio;
    }
 
    public Integer getOrderNum() {
        return orderNum;
    }
 
    public void setOrderNum(Integer orderNum) {
        this.orderNum = orderNum;
    }
 
    public String getUserId() {
        return userId;
    }
 
    public void setUserId(String userId) {
        this.userId = userId;
    }
 
    public String getUserName() {
        return userName;
    }
 
    public void setUserName(String userName) {
        this.userName = userName;
    }
}