4
hao
2025-04-16 c5fb1fbcbb2bf4d511773d348f9ef625855c61fc
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
package com.dev.entity;
import com.app.base.entity.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.hibernate.annotations.DynamicUpdate;
 
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
 
 
/**
 * 组件表
 *
 */
@Entity(name = "ApiDashboardWidget")
@Table(name = ApiDashboardWidget.TABLE_NAME)
@DynamicUpdate
@ApiModel
public class ApiDashboardWidget  extends BaseEntity {
 
 
    public static final String TABLE_NAME = "api_dashboard_widget";
 
 
    /**
     * 报表编码
     */
    @ApiModelProperty(name = "bsCode", value = "报表编码")
    @Column(length = 120)
    private String bsCode;
 
    /**
     * 组件类型
     */
    @ApiModelProperty(name = "bsType", value = "组件类型")
    @Column(length = 20)
    private String bsType;
 
    /**
     * 组件的渲染属性json
     */
    @ApiModelProperty(name = "bsSetup", value = "组件的渲染属性json")
    @Column(length =600)
    private String bsSetup;
 
    /**
     * 组件的数据属性json
     */
    @ApiModelProperty(name = "bsData", value = "组件的数据属性json")
    @Column(length =600)
    private String bsData;
 
    /**
     * 组件的配置属性json
     */
    @ApiModelProperty(name = "bsCollapse", value = "组件的配置属性json")
    @Column(length = 600)
    private String bsCollapse;
 
    /**
     * 组件的大小位置属性json
     */
    @ApiModelProperty(name = "bsPosition", value = "组件的大小位置属性json")
    @Column(length = 600)
    private String bsPosition;
 
    /**
     * options配置项
     */
    @ApiModelProperty(name = "bsPosition", value = "options配置项")
    @Column(length = 600)
    private String bsOptions;
 
    /**
     * 自动刷新间隔秒
     */
    @ApiModelProperty(name = "bsRefreshSeconds", value = "自动刷新间隔秒")
    @Column(length = 20)
    private Integer bsRefreshSeconds;
 
    /**
     * 0--已禁用 1--已启用 dic_name=enable_flag
     */
    @ApiModelProperty(name = "bsEnableFlag", value = " 0--已禁用 1--已启用 ")
    @Column(length = 20)
    private Integer bsEnableFlag;
 
 
    /**
     * 排序,图层的概念
     */
    @ApiModelProperty(name = "bsSort", value = "排序")
    @Column(length = 10)
    private Long bsSort;
 
 
    public static String getTableName() {
        return TABLE_NAME;
    }
 
    public String getBsCode() {
        return bsCode;
    }
 
    public void setBsCode(String bsCode) {
        this.bsCode = bsCode;
    }
 
    public String getBsType() {
        return bsType;
    }
 
    public void setBsType(String bsType) {
        this.bsType = bsType;
    }
 
    public String getBsSetup() {
        return bsSetup;
    }
 
    public void setBsSetup(String bsSetup) {
        this.bsSetup = bsSetup;
    }
 
    public String getBsData() {
        return bsData;
    }
 
    public void setBsData(String bsData) {
        this.bsData = bsData;
    }
 
    public String getBsCollapse() {
        return bsCollapse;
    }
 
    public void setBsCollapse(String bsCollapse) {
        this.bsCollapse = bsCollapse;
    }
 
    public String getBsPosition() {
        return bsPosition;
    }
 
    public void setBsPosition(String bsPosition) {
        this.bsPosition = bsPosition;
    }
 
    public String getBsOptions() {
        return bsOptions;
    }
 
    public void setBsOptions(String bsOptions) {
        this.bsOptions = bsOptions;
    }
 
    public Integer getBsRefreshSeconds() {
        return bsRefreshSeconds;
    }
 
    public void setBsRefreshSeconds(Integer bsRefreshSeconds) {
        this.bsRefreshSeconds = bsRefreshSeconds;
    }
 
    public Integer getBsEnableFlag() {
        return bsEnableFlag;
    }
 
    public void setBsEnableFlag(Integer bsEnableFlag) {
        this.bsEnableFlag = bsEnableFlag;
    }
 
 
 
    public Long getBsSort() {
        return bsSort;
    }
 
    public void setBsSort(Long bsSort) {
        this.bsSort = bsSort;
    }
 
 
}