puzhibing
2023-08-01 98bc380ae322eaac2ee7e21d0c565e30eacce2b5
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
package com.stylefeng.guns.modular.system.model;
 
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableName;
 
/**
 * 通知
 */
@TableName("t_notices")
public class TNotices extends BaseBean {
    /**
     * 标题
     */
    @TableField("title")
    private String title;
    /**
     * 内容
     */
    @TableField("content")
    private String content;
    /**
     * 排序
     */
    @TableField("sort")
    private Integer sort;
    /**
     * 是否显示/发布(1=是,2=否)
     */
    @TableField("isShow")
    private Integer isShow;
    /**
     * 是否播报(1=是,2=否)
     */
    @TableField("isBroadcast")
    private Integer isBroadcast;
    /**
     * 公告类型(1=滚动消息,2=公告)
     */
    @TableField("type")
    private Integer type;
    /**
     * 图片地址
     */
    @TableField("imgUrl")
    private String imgUrl;
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public Integer getSort() {
        return sort;
    }
 
    public void setSort(Integer sort) {
        this.sort = sort;
    }
 
    public Integer getIsShow() {
        return isShow;
    }
 
    public void setIsShow(Integer isShow) {
        this.isShow = isShow;
    }
 
    public Integer getIsBroadcast() {
        return isBroadcast;
    }
 
    public void setIsBroadcast(Integer isBroadcast) {
        this.isBroadcast = isBroadcast;
    }
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
    public String getImgUrl() {
        return imgUrl;
    }
 
    public void setImgUrl(String imgUrl) {
        this.imgUrl = imgUrl;
    }
 
    @Override
    public String toString() {
        return "TNotice{" +
                "title='" + title + '\'' +
                ", content='" + content + '\'' +
                ", sort=" + sort +
                ", isShow=" + isShow +
                ", isBroadcast=" + isBroadcast +
                ", type=" + type +
                ", imgUrl='" + imgUrl + '\'' +
                '}';
    }
}