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
package pwc.taxtech.atms.dto;
public class UpdateLogParams {
private Object originalState;
/**更新对象*/
private Object updateState;
/**操作的具体业务表*/
private Integer operationModule;
/**存放日志的表名*/
private Integer operateLogType;
/**该条日志的所属业务数据名称*/
private String operationContent;
/**操作人员*/
private String operationUser;
private String operationObject;
/**备注信息(新增和删除时存放整个json数据,修改时为空;另也可存放级联禁用启用等特殊情况下的说明)*/
private String comment;
private Integer operationAction;
public Object getOriginalState() {
return originalState;
}
public void setOriginalState(Object originalState) {
this.originalState = originalState;
}
public Object getUpdateState() {
return updateState;
}
public void setUpdateState(Object updateState) {
this.updateState = updateState;
}
public String getOperationContent() {
return operationContent;
}
public void setOperationContent(String operationContent) {
this.operationContent = operationContent;
}
public String getOperationUser() {
return operationUser;
}
public void setOperationUser(String operationUser) {
this.operationUser = operationUser;
}
public String getOperationObject() {
return operationObject;
}
public void setOperationObject(String operationObject) {
this.operationObject = operationObject;
}
public String getComment() {
return comment;
}
public void setComment(String comment) {
this.comment = comment;
}
public Integer getOperationAction() {
return operationAction;
}
public void setOperationAction(Integer operationAction) {
this.operationAction = operationAction;
}
public Integer getOperationModule() {
return operationModule;
}
public void setOperationModule(Integer operationModule) {
this.operationModule = operationModule;
}
public Integer getOperateLogType() {
return operateLogType;
}
public void setOperateLogType(Integer operateLogType) {
this.operateLogType = operateLogType;
}
}