SysLogEntity.java
632 Bytes
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
package com.gxb.modules.sys.entity;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
/**
* 系统日志
*
* @author chenshun
* @email sunlightcs@gmail.com
* @date 2017-03-08 10:40:56
*/
@Data
public class SysLogEntity implements Serializable {
private static final long serialVersionUID = 1L;
private Long id;
//用户名
private String username;
//用户操作
private String operation;
//请求方法
private String method;
//请求参数
private String params;
//执行时长(毫秒)
private Long time;
//IP地址
private String ip;
//创建时间
private Date createDate;
}