xiangpei
2024-05-31 16d10cef208de048f8b325facd143c54b7be9963
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
package com.ycl.jxkg.domain;
 
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
@Data
public class UserEventLog implements Serializable {
 
    private static final long serialVersionUID = -3951198127152024633L;
 
 
    public UserEventLog() {
 
    }
 
    public UserEventLog(Integer userId, String userName, String realName, Date createTime) {
        this.userId = userId;
        this.userName = userName;
        this.realName = realName;
        this.createTime = createTime;
    }
 
    private Integer id;
 
    /**
     * 用户id
     */
    private Integer userId;
 
    /**
     * 用户名
     */
    private String userName;
 
    /**
     * 真实姓名
     */
    private String realName;
 
    /**
     * 内容
     */
    private String content;
 
    /**
     * 时间
     */
    private Date createTime;
 
}