feiyu02
2024-08-15 196bb14112448857a885e32dc4149e308e00b01a
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
186
187
188
189
190
191
192
193
194
195
package cn.flightfeather.supervision.domain.entity;
 
import java.util.Date;
import javax.persistence.*;
 
@Table(name = "ea_t_notification")
public class Notification {
    @Id
    @Column(name = "NT_GUID")
    private String ntGuid;
 
    @Column(name = "NT_AuthorId")
    private String ntAuthorid;
 
    @Column(name = "NT_AuthorName")
    private String ntAuthorname;
 
    @Column(name = "NT_AuthorPicUrl")
    private String ntAuthorpicurl;
 
    @Column(name = "NT_TypeId")
    private String ntTypeid;
 
    @Column(name = "NT_TypeName")
    private String ntTypename;
 
    @Column(name = "NT_Title")
    private String ntTitle;
 
    @Column(name = "NT_PicUrl")
    private String ntPicurl;
 
    @Column(name = "NT_BodyUrl")
    private String ntBodyurl;
 
    @Column(name = "NT_Content")
    private String ntContent;
 
    @Column(name = "NT_UpdateTime")
    private Date ntUpdatetime;
 
    /**
     * @return NT_GUID
     */
    public String getNtGuid() {
        return ntGuid;
    }
 
    /**
     * @param ntGuid
     */
    public void setNtGuid(String ntGuid) {
        this.ntGuid = ntGuid == null ? null : ntGuid.trim();
    }
 
    /**
     * @return NT_AuthorId
     */
    public String getNtAuthorid() {
        return ntAuthorid;
    }
 
    /**
     * @param ntAuthorid
     */
    public void setNtAuthorid(String ntAuthorid) {
        this.ntAuthorid = ntAuthorid == null ? null : ntAuthorid.trim();
    }
 
    /**
     * @return NT_AuthorName
     */
    public String getNtAuthorname() {
        return ntAuthorname;
    }
 
    /**
     * @param ntAuthorname
     */
    public void setNtAuthorname(String ntAuthorname) {
        this.ntAuthorname = ntAuthorname == null ? null : ntAuthorname.trim();
    }
 
    /**
     * @return NT_AuthorPicUrl
     */
    public String getNtAuthorpicurl() {
        return ntAuthorpicurl;
    }
 
    /**
     * @param ntAuthorpicurl
     */
    public void setNtAuthorpicurl(String ntAuthorpicurl) {
        this.ntAuthorpicurl = ntAuthorpicurl == null ? null : ntAuthorpicurl.trim();
    }
 
    /**
     * @return NT_TypeId
     */
    public String getNtTypeid() {
        return ntTypeid;
    }
 
    /**
     * @param ntTypeid
     */
    public void setNtTypeid(String ntTypeid) {
        this.ntTypeid = ntTypeid == null ? null : ntTypeid.trim();
    }
 
    /**
     * @return NT_TypeName
     */
    public String getNtTypename() {
        return ntTypename;
    }
 
    /**
     * @param ntTypename
     */
    public void setNtTypename(String ntTypename) {
        this.ntTypename = ntTypename == null ? null : ntTypename.trim();
    }
 
    /**
     * @return NT_Title
     */
    public String getNtTitle() {
        return ntTitle;
    }
 
    /**
     * @param ntTitle
     */
    public void setNtTitle(String ntTitle) {
        this.ntTitle = ntTitle == null ? null : ntTitle.trim();
    }
 
    /**
     * @return NT_PicUrl
     */
    public String getNtPicurl() {
        return ntPicurl;
    }
 
    /**
     * @param ntPicurl
     */
    public void setNtPicurl(String ntPicurl) {
        this.ntPicurl = ntPicurl == null ? null : ntPicurl.trim();
    }
 
    /**
     * @return NT_BodyUrl
     */
    public String getNtBodyurl() {
        return ntBodyurl;
    }
 
    /**
     * @param ntBodyurl
     */
    public void setNtBodyurl(String ntBodyurl) {
        this.ntBodyurl = ntBodyurl == null ? null : ntBodyurl.trim();
    }
 
    /**
     * @return NT_Content
     */
    public String getNtContent() {
        return ntContent;
    }
 
    /**
     * @param ntContent
     */
    public void setNtContent(String ntContent) {
        this.ntContent = ntContent == null ? null : ntContent.trim();
    }
 
    /**
     * @return NT_UpdateTime
     */
    public Date getNtUpdatetime() {
        return ntUpdatetime;
    }
 
    /**
     * @param ntUpdatetime
     */
    public void setNtUpdatetime(Date ntUpdatetime) {
        this.ntUpdatetime = ntUpdatetime;
    }
}