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
package com.ycl.jxkg.domain.entity;
 
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
 
import java.util.Date;
 
@Data
@TableName("t_user_event_log")
public class UserEventLog{
 
    public UserEventLog() {
 
    }
 
    public UserEventLog(Integer userId, String userName, String realName, Date createTime) {
        this.userId = userId;
        this.userName = userName;
        this.realName = realName;
        this.createTime = createTime;
    }
 
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    /**
     * 用户id
     */
    @TableField("user_id")
    private Integer userId;
 
    /**
     * 用户名
     */
    @TableField("user_name")
    private String userName;
 
    /**
     * 真实姓名
     */
    @TableField("real_name")
    private String realName;
 
    /**
     * 内容
     */
    @TableField("content")
    private String content;
 
    /**
     * 时间
     */
    @TableField(value = "create_time", fill = FieldFill.INSERT)
    private Date createTime;
 
}