1
hao
2025-05-20 8e24c6fea30d9b179375ee2893710cdec2443b13
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
package com.system.log.entity;
 
import javax.persistence.Entity;
import javax.persistence.Table;
 
import org.hibernate.annotations.DynamicUpdate;
 
import com.app.base.entity.BaseEntity;
 
@Entity
@Table(name= SysLog.TABLE_NAME)
@DynamicUpdate
public class SysLog extends BaseEntity {
    
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
 
    public static final String TABLE_NAME = "app_log";
 
    private String username; //用户名
 
    private String operation; //操作
 
    private String method; //方法
    
    private String methodName; //方法名
 
    private String params; //参数
 
    private String ip; //ip地址
    
    private String remark; //注解
    
    private String type;//类型.1:debug;2:sucess;3:error
 
    public String getUsername() {
        return username;
    }
 
    public void setUsername(String username) {
        this.username = username;
    }
 
    public String getOperation() {
        return operation;
    }
 
    public void setOperation(String operation) {
        this.operation = operation;
    }
 
    public String getMethod() {
        return method;
    }
 
    public void setMethod(String method) {
        this.method = method;
    }
 
    public String getParams() {
        return params;
    }
 
    public void setParams(String params) {
        this.params = params;
    }
 
    public String getIp() {
        return ip;
    }
 
    public void setIp(String ip) {
        this.ip = ip;
    }
 
    public String getMethodName() {
        return methodName;
    }
 
    public void setMethodName(String methodName) {
        this.methodName = methodName;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
    
    
}