派生自 projectDept/qhighschool

yn147
2022-11-24 c6dd8423a2ca6e225deb93b78891d5565136cd4b
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
package com.qxueyou.scc.msg.model;
 
import java.io.Serializable;
import java.util.Date;
 
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.NamedQuery;
import javax.persistence.Table;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.hibernate.annotations.GenericGenerator;
import org.springframework.format.annotation.DateTimeFormat;
 
import com.qxueyou.scc.base.model.BaseVO;
 
 
/**
 * ÏûÏ¢ÁÄÌì¼Ç¼±í ÊµÌå
 * @author ody.yuan
 *
 */
@Entity
@Table(name="message")
@NamedQuery(name="Message.findAll", query="SELECT m FROM Message m")
public class Message extends BaseVO implements Serializable, com.qxueyou.scc.base.model.ITrace {
    private static final long serialVersionUID = 1L;
 
 
    /** Ö÷¼ü  */
    @Id
    @GeneratedValue(generator = "hibernate-uuid")
    @GenericGenerator(name = "hibernate-uuid", strategy = "uuid")
    @Column(name="MESSAGE_ID", unique=true, nullable=false, length=32)
    private String messageId;
 
    /** ÄÚÈÝ  */
    @Column(name="CONTENT", nullable=false, length=5000)
    private String content;
 
    /** ´´½¨ÕßID  */
    @Column(name="CREATE_ID", nullable=false, length=32)
    private String createId;
 
    /** ´´½¨Ê±¼ä  */
    @Column(name="CREATE_TIME", nullable=false)
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createTime;
 
    /** ´´½¨ÈË  */
    @Column(name="CREATOR", nullable=false, length=100)
    private String creator;
 
    /** É¾³ý±êÖ¾  */
    @Column(name="DELETE_FLAG", nullable=false)
    private boolean deleteFlag;
 
    /** ½ÓÊÕÈËID  */
    @Column(name="RECEIVER_ID", length=32)
    private String receiverId;
 
    /** ½ÓÊÕÈË  */
    @Column(name="RECEIVER", length=64)
    private String receiver;
 
    /** ·¢ËÍÈËID  */
    @Column(name="SENDER_ID", length=32)
    private String senderId;
 
    /** ·¢ËÍÈË  */
    @Column(name="SENDER", length=64)
    private String sender;
 
    /** ×´Ì¬  */
    @Column(name="STATUS", length=32)
    private boolean status;
 
    /** ÐÞ¸ÄÈËID  */
    @Column(name="UPDATE_ID", length=32)
    private String updateId;
 
    /** ÐÞ¸Äʱ¼ä  */
    @Column(name="UPDATE_TIME", nullable=false)
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date updateTime;
 
    /** ÐÞ¸ÄÈË  */
    @Column(name="UPDATOR", length=100)
    private String updator;
 
    /** Èº±êÖ¾£º0·ñ  1ÊÇ  */
    @Column(name="GROUP_FLAG")
    private boolean groupFlag;
 
    /**   */
    @Column(name="ATTRIBUTE_1",length=256)
    private String attribute1;
 
    /**   */
    @Column(name="ATTRIBUTE_2",length=128)
    private String attribute2;
 
    /**   */
    @Column(name="ATTRIBUTE_3",length=128)
    private String attribute3;
 
    /**   */
    @Column(name="ATTRIBUTE_4",length=128)
    private String attribute4;
 
    /**   */
    @Column(name="ATTRIBUTE_5",length=128)
    private String attribute5;
 
    /**   */
    @Column(name="ATTRIBUTE_6",length=256)
    private String attribute6;
 
    /** ÏûÏ¢ÀàÐÍ£ºINFO,Õý³£ÏûÏ¢; FRIEND_REQ,¼ÓºÃÓÑÇëÇó;FRIEND_RSP,ºÃÓÑÇëÇó´ð¸´; GROUP_REQ,¼ÓȺÇëÇó;GROUP_REQ,¼ÓȺÇëÇó´ð¸´;  GROUP_BREAKUP, Èº½âÉ¢£»
     * SYS_MSG ÏµÍ³ÏûÏ¢;ORG»ú¹¹½éÉÜÔ¤ÀÀ; CLASS °à¼¶½éÉÜÔ¤ÀÀ ; LESSON ¿Î³Ì½éÉÜÔ¤ÀÀ  ; CHAT_ROOM ÁÄÌìÊÒÏûÏ¢*/
    @Column(name="MSG_TYPE",length=32)
    private String msgType;
    
    /*
     * ÏûÏ¢ÀàÐÍ£¨INFO,Õý³£ÏûÏ¢;£©
     */
    public static final String TYPE_INFO = "INFO";
    
    /*
     * ÏûÏ¢ÀàÐÍ£¨FRIEND_REQ,¼ÓºÃÓÑÇëÇó;£©
     */
    public static final String TYPE_FRIEND_REQ = "FRIEND_REQ";
    
    /*
     * ÏûÏ¢ÀàÐÍ£¨FRIEND_RSP,ºÃÓÑÇëÇó´ð¸´; £©
     */
    public static final String TYPE_FRIEND_RSP = "FRIEND_RSP";
    
    /*
     * ÏûÏ¢ÀàÐÍ£¨GROUP_REQ,¼ÓȺÇëÇó;£©
     */
    public static final String TYPE_GROUP_REQ = "GROUP_REQ";
    
    /*
     * ÏûÏ¢ÀàÐÍ£¨GROUP_RSP,¼ÓȺÇëÇó´ð¸´;£©
     */
    public static final String TYPE_GROUP_RSP = "GROUP_RSP";
    
    /*
     * ÏûÏ¢ÀàÐÍ£¨GROUP_BREAKUP, Èº½âÉ¢£©
     */
    public static final String TYPE_GROUP_BREAKUP = "GROUP_BREAKUP";
    
    /*
     * ÏûÏ¢ÀàÐÍ£¨SYS_MSG, ÏµÍ³ÏûÏ¢£©
     */
    public static final String TYPE_SYS_MSG = "SYS_MSG";
    
    /*
     * ÏûÏ¢ÀàÐÍ£¨ORG_INTRODUCE, »ú¹¹½éÉÜÔ¤ÀÀ£©
     */
    public static final String TYPE_ORG_INTRODUCE = "ORG";
    
    /*
     * ÏûÏ¢ÀàÐÍ£¨CLASS_INTRODUCE, °à¼¶½éÉÜÔ¤ÀÀ£©
     */
    public static final String TYPE_CLASS_INTRODUCE = "CLASS";
    
    /*
     * ÏûÏ¢ÀàÐÍ£¨LESSON_INTRODUCE, ¿Î³Ì½éÉÜÔ¤ÀÀ£©
     */
    public static final String TYPE_LESSON_INTRODUCE = "LESSON";
    
    /*
     * ÏûÏ¢ÀàÐÍ£¨CHAT_ROOM, ÁÄÌìÊÒÏûÏ¢£©
     */
    public static final String TYPE_CHAT_ROOM = "CHATROOM";
    
    public String getAttribute1() {
        return attribute1;
    }
 
 
    public void setAttribute1(String attribute1) {
        this.attribute1 = attribute1;
    }
 
 
    public boolean isGroupFlag() {
        return groupFlag;
    }
 
 
 
    public void setGroupFlag(boolean groupFlag) {
        this.groupFlag = groupFlag;
    }
 
 
 
    public String getMessageId() {
        return this.messageId;
    }
 
    public void setMessageId(String messageId) {
        this.messageId = messageId;
    }
 
    public String getContent() {
        return this.content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public String getCreateId() {
        return this.createId;
    }
 
    public void setCreateId(String createId) {
        this.createId = createId;
    }
 
    public Date getCreateTime() {
        return this.createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public String getCreator() {
        return this.creator;
    }
 
    public void setCreator(String creator) {
        this.creator = creator;
    }
 
 
    public String getReceiverId() {
        return this.receiverId;
    }
 
    public void setReceiverId(String receiverId) {
        this.receiverId = receiverId;
    }
 
    public String getSenderId() {
        return this.senderId;
    }
 
    public void setSenderId(String senderId) {
        this.senderId = senderId;
    }
 
    public boolean isStatus() {
        return this.status;
    }
 
    public void setStatus(boolean status) {
        this.status = status;
    }
    
    public String getReceiver() {
        return receiver;
    }
 
    public void setReceiver(String receiver) {
        this.receiver = receiver;
    }
 
    public String getSender() {
        return sender;
    }
 
    public void setSender(String sender) {
        this.sender = sender;
    }
 
    public String getUpdateId() {
        return this.updateId;
    }
 
    public void setUpdateId(String updateId) {
        this.updateId = updateId;
    }
 
    public Date getUpdateTime() {
        return this.updateTime;
    }
 
    public String getUpdator() {
        return this.updator;
    }
 
    public void setUpdator(String updator) {
        this.updator = updator;
    }
 
    @Override
    public boolean getDeleteFlag() {
        return deleteFlag;
    }
 
    @Override
    public void setDeleteFlag(boolean deleteFlag) {
        this.deleteFlag=deleteFlag;
        
    }
 
    @Override
    public void setUpdateTime(Date updateTime) {
        this.updateTime=updateTime;
    }
 
 
    public String getMsgType() {
        return msgType;
    }
 
 
    public void setMsgType(String msgType) {
        this.msgType = msgType;
    }
 
 
    public String getAttribute2() {
        return attribute2;
    }
 
 
    public void setAttribute2(String attribute2) {
        this.attribute2 = attribute2;
    }
 
 
    public String getAttribute3() {
        return attribute3;
    }
 
 
    public void setAttribute3(String attribute3) {
        this.attribute3 = attribute3;
    }
    
    public String getAttribute4() {
        return attribute4;
    }
 
 
    public void setAttribute4(String attribute4) {
        this.attribute4 = attribute4;
    }
 
 
    public String getAttribute5() {
        return attribute5;
    }
 
 
    public void setAttribute5(String attribute5) {
        this.attribute5 = attribute5;
    }
    
    public String getAttribute6() {
        return attribute6;
    }
 
    public void setAttribute6(String attribute6) {
        this.attribute6 = attribute6;
    }
    
    public String toString(){
        return ToStringBuilder.reflectionToString(this);
    }
}