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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
package com.vci.server.log.objects;
 
import java.io.Serializable;
import java.util.Date;
 
 
public class Log implements Serializable {
    
    /**
     * 
     */
    private static final long serialVersionUID = -2896915397284485099L;
    
    private String id;//ID
    private String username;//操作用户名称
    private String roleName;//操作用户模块所属角色
    private String userIp;//操作用户IP
    private String result;//操作结果
    private String content;//日志内容
    private Date date;//操作日期
    private String type;//操作类型
    private String module;//操作模块
    private String entityDesc;//操作对象的描述
    private String property;//操作的属性
    private String previousVal;//操作前的值
    private String newVal;//操作后的值
    private String logType = "";
    private String objId = "";//操作数据对象ID
 
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getUsername() {
        return username;
    }
    public void setUsername(String username) {
        this.username = username;
    }
    public String getUserIp() {
        return userIp;
    }
    public void setUserIp(String userIp) {
        this.userIp = userIp;
    }
    public String getResult() {
        return result;
    }
    public void setResult(String result) {
        this.result = result;
    }
    
    public String getContent() {
        return content;
    }
    public void setContent(String content) {
        this.content = content;
    }
    
    public Date getDate() {
        return date;
    }
    public void setDate(Date date) {
        this.date = date;
    }
    public String getType() {
        return type;
    }
    public void setType(String type) {
        this.type = type;
    }
    public String getModule() {
        return module;
    }
    public void setModule(String module) {
        this.module = module;
    }
    public String getEntityDesc() {
        return entityDesc;
    }
    public void setEntityDesc(String entityDesc) {
        this.entityDesc = entityDesc;
    }
    public String getProperty() {
        return property;
    }
    public void setProperty(String property) {
        this.property = property;
    }
    public String getPreviousVal() {
        return previousVal;
    }
    public void setPreviousVal(String previousVal) {
        this.previousVal = previousVal;
    }
    public String getNewVal() {
        return newVal;
    }
    public void setNewVal(String newVal) {
        this.newVal = newVal;
    }
    public String getLogType() {
        return logType;
    }
    public void setLogType(String logType) {
        this.logType = logType;
    }
    public String getObjId() {
        return objId;
    }
    public void setObjId(String objId) {
        this.objId = objId;
    }
    public String getRoleName() {
        return roleName;
    }
    public void setRoleName(String roleName) {
        this.roleName = roleName;
    }
    
}