log_entry.go
1.1 KB
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
package domain
// LogEntry 日志内容
type LogEntry struct {
// 对象名称 数据表名 / 文件名
ObjectName string `json:"objectName"`
// 对象类型 1.主表 2.分表 3.副表 4.源文件 5.校验文件
ObjectType string `json:"objectType"`
// 操作类型 1.主表生成 2.主表拆分 3.数据导入 4.分表生成 5.表复制 6.编辑记录 7.文件上传 8.文件校验
OperationType string `json:"operationType"`
// 日志内容
Content string `json:"content"`
// 操作人名称
OperatorName string `json:"operatorName"`
// 错误级别
Level string `json:"level"`
// 错误信息
Error string `json:"error"`
ctx *Context `json:"-"`
}
func (l LogEntry) Entry() LogEntry {
return l
}
func (l LogEntry) Context() *Context {
return l.ctx
}
func NewLogEntry(fileOrTableName string, objectType string, operationType OperationType, ctx *Context) LogEntry {
return LogEntry{
ObjectName: fileOrTableName,
ObjectType: objectType,
OperationType: operationType.ToString(),
OperatorName: ctx.OperatorName,
ctx: ctx,
}
}