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
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;
import java.util.Date;
 
/**
 * 报表
 *
 */
@Entity(name = "ApiLargeScreen")
@Table(name = ApiLargeScreen.TABLE_NAME)
@DynamicUpdate
@ApiModel
public class ApiLargeScreen extends BaseEntity {
 
    public static final String TABLE_NAME = "API_LARGE_SCREEN";
 
    /**
     * 报表编码
     */
    @ApiModelProperty(name = "bsCode", value = "报表编码")
    @Column(length = 40)
    private String bsCode;
 
    /**
     * 看板标题
     */
    @ApiModelProperty(name = "bsTitle", value = "看板标题")
    @Column(length = 600)
    private String bsTitle;
 
    /**
     * 宽度px
     */
    @ApiModelProperty(name = "bsWidth", value = "宽度px")
    @Column(length = 10)
    private Long bsWidth;
 
    /**
     * 高度px
     */
    @ApiModelProperty(name = "bsHeight", value = "高度px")
    @Column(length = 10)
    private Long bsHeight;
 
    /**
     * 背景色
     */
    @ApiModelProperty(name = "bsBackgroundColor", value = "背景色")
    @Column(length = 60)
    private String bsBackgroundColor;
 
    /**
     * 背景图片
     */
    @ApiModelProperty(name = "bsBackgroundImage", value = "背景图片")
    @Column(length = 200)
    private String bsBackgroundImage;
 
    /**
     * 自动刷新间隔秒
     */
    @ApiModelProperty(name = "bsRefreshSeconds", value = "自动刷新间隔秒")
    @Column(length = 30)
    private Integer bsRefreshSeconds;
 
    /**
     * 0--已禁用 1--已启用 dic_name=enable_flag
     */
    @ApiModelProperty(name = "bsEnableFlag", value = "0--已禁用 1--已启用")
    @Column(length = 30)
    private Integer bsEnableFlag;
 
    /**
     * 排序,降序S
     */
    @ApiModelProperty(name = "bsort", value = "排序")
    @Column(length = 10)
    private Integer bsort;
 
    public static String getTableName() {
        return TABLE_NAME;
    }
 
    public String getBsCode() {
        return bsCode;
    }
 
    public void setBsCode(String bsCode) {
        this.bsCode = bsCode;
    }
 
    public String getBsTitle() {
        return bsTitle;
    }
 
    public void setBsTitle(String bsTitle) {
        this.bsTitle = bsTitle;
    }
 
    public Long getBsWidth() {
        return bsWidth;
    }
 
    public void setBsWidth(Long bsWidth) {
        this.bsWidth = bsWidth;
    }
 
    public Long getBsHeight() {
        return bsHeight;
    }
 
    public void setBsHeight(Long bsHeight) {
        this.bsHeight = bsHeight;
    }
 
    public String getBsBackgroundColor() {
        return bsBackgroundColor;
    }
 
    public void setBsBackgroundColor(String bsBackgroundColor) {
        this.bsBackgroundColor = bsBackgroundColor;
    }
 
    public String getBsBackgroundImage() {
        return bsBackgroundImage;
    }
 
    public void setBsBackgroundImage(String bsBackgroundImage) {
        this.bsBackgroundImage = bsBackgroundImage;
    }
 
    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 Integer getBsort() {
        return bsort;
    }
 
    public void setBsort(Integer bsort) {
        this.bsort = bsort;
    }
 
 
}