fuliqi
2024-10-17 8546b3d285af4235a0ef615a0c6e89486ae2c806
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
package com.ycl.jxkg.domain.entity;
 
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.ycl.jxkg.domain.base.AbsEntity;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
@Data
@TableName("t_message")
public class Message extends AbsEntity {
 
 
    /**
     * 标题
     */
    @TableField("title")
    private String title;
 
    /**
     * 内容
     */
    @TableField("content")
    private String content;
 
    @TableField(value = "create_time", fill = FieldFill.INSERT)
    private Date createTime;
 
    /**
     * 发送者用户ID
     */
    @TableField("send_user_id")
    private Integer sendUserId;
 
    /**
     * 发送者用户名
     */
    @TableField("send_user_name")
    private String sendUserName;
 
    /**
     * 发送者真实姓名
     */
    @TableField("send_real_name")
    private String sendRealName;
 
    /**
     * 接收人数
     */
    @TableField("receive_user_count")
    private Integer receiveUserCount;
 
    /**
     * 已读人数
     */
    @TableField("read_count")
    private Integer readCount;
 
}