懒羊羊
2023-11-14 8286c62256f23bc2367a6729c0f46f84215e380b
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
package cn.stylefeng.guns.sys.modular.rest.entity;
 
import com.baomidou.mybatisplus.annotation.*;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * <p>
 * 操作日志
 * </p>
 *
 * @author stylefeng
 * @since 2019-04-01
 */
@TableName("sys_operation_log")
public class RestOperationLog implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键
     */
    @TableId(value = "operation_log_id", type = IdType.ID_WORKER)
    private Long operationLogId;
 
    /**
     * 日志类型(字典)
     */
    @TableField("log_type")
    private String logType;
 
    /**
     * 日志名称
     */
    @TableField("log_name")
    private String logName;
 
    /**
     * 用户id
     */
    @TableField("user_id")
    private Long userId;
 
    /**
     * 类名称
     */
    @TableField("class_name")
    private String className;
 
    /**
     * 方法名称
     */
    @TableField("method")
    private String method;
 
    /**
     * 创建时间
     */
    @TableField(value = "create_time", fill = FieldFill.INSERT)
    private Date createTime;
 
    /**
     * 是否成功(字典)
     */
    @TableField("succeed")
    private String succeed;
 
    /**
     * 备注
     */
    @TableField("message")
    private String message;
 
 
    public Long getOperationLogId() {
        return operationLogId;
    }
 
    public void setOperationLogId(Long operationLogId) {
        this.operationLogId = operationLogId;
    }
 
    public String getLogType() {
        return logType;
    }
 
    public void setLogType(String logType) {
        this.logType = logType;
    }
 
    public String getLogName() {
        return logName;
    }
 
    public void setLogName(String logName) {
        this.logName = logName;
    }
 
    public Long getUserId() {
        return userId;
    }
 
    public void setUserId(Long userId) {
        this.userId = userId;
    }
 
    public String getClassName() {
        return className;
    }
 
    public void setClassName(String className) {
        this.className = className;
    }
 
    public String getMethod() {
        return method;
    }
 
    public void setMethod(String method) {
        this.method = method;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public String getSucceed() {
        return succeed;
    }
 
    public void setSucceed(String succeed) {
        this.succeed = succeed;
    }
 
    public String getMessage() {
        return message;
    }
 
    public void setMessage(String message) {
        this.message = message;
    }
 
    @Override
    public String toString() {
        return "OperationLog{" +
                "operationLogId=" + operationLogId +
                ", logType=" + logType +
                ", logName=" + logName +
                ", userId=" + userId +
                ", className=" + className +
                ", method=" + method +
                ", createTime=" + createTime +
                ", succeed=" + succeed +
                ", message=" + message +
                "}";
    }
}