UpdateLogParams.java 2.39 KB
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2 3 4 5 6
package pwc.taxtech.atms.dto;


public class UpdateLogParams {

    private Object originalState;
7 8 9 10

    /**
     * 更新对象
     */
eddie.woo's avatar
eddie.woo committed
11 12
    private Object updateState;

13 14 15
    /**
     * 操作的具体业务表
     */
eddie.woo's avatar
eddie.woo committed
16 17
    private Integer operationModule;

18 19 20
    /**
     * 存放日志的表名
     */
eddie.woo's avatar
eddie.woo committed
21 22
    private Integer operateLogType;

23 24 25
    /**
     * 该条日志的所属业务数据名称
     */
eddie.woo's avatar
eddie.woo committed
26 27
    private String operationContent;

28 29 30
    /**
     * 操作人员
     */
eddie.woo's avatar
eddie.woo committed
31 32 33 34
    private String operationUser;

    private String operationObject;

35 36 37
    /**
     * 备注信息(新增和删除时存放整个json数据,修改时为空;另也可存放级联禁用启用等特殊情况下的说明)
     */
eddie.woo's avatar
eddie.woo committed
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
    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;
    }
}