2020-10-09 11:06:37 +08:00
|
|
|
package models
|
|
|
|
|
|
2022-03-21 21:39:36 +08:00
|
|
|
import "github.com/iwind/TeaGo/dbs"
|
|
|
|
|
|
2021-05-19 19:03:46 +08:00
|
|
|
// NodeLog 节点日志
|
2020-10-09 11:06:37 +08:00
|
|
|
type NodeLog struct {
|
2022-03-21 21:39:36 +08:00
|
|
|
Id uint64 `field:"id"` // ID
|
|
|
|
|
Role string `field:"role"` // 节点角色
|
|
|
|
|
Type string `field:"type"` // 类型
|
|
|
|
|
CreatedAt uint64 `field:"createdAt"` // 创建时间
|
|
|
|
|
Tag string `field:"tag"` // 标签
|
|
|
|
|
Description string `field:"description"` // 描述
|
|
|
|
|
Level string `field:"level"` // 级别
|
|
|
|
|
NodeId uint32 `field:"nodeId"` // 节点ID
|
|
|
|
|
Day string `field:"day"` // 日期
|
|
|
|
|
ServerId uint32 `field:"serverId"` // 服务ID
|
|
|
|
|
OriginId uint32 `field:"originId"` // 源站ID
|
|
|
|
|
Hash string `field:"hash"` // 信息内容Hash
|
|
|
|
|
Count uint32 `field:"count"` // 重复次数
|
2022-03-22 22:11:32 +08:00
|
|
|
IsFixed bool `field:"isFixed"` // 是否已处理
|
|
|
|
|
IsRead bool `field:"isRead"` // 是否已读
|
2022-03-21 21:39:36 +08:00
|
|
|
Params dbs.JSON `field:"params"` // 参数
|
2020-10-09 11:06:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type NodeLogOperator struct {
|
|
|
|
|
Id interface{} // ID
|
|
|
|
|
Role interface{} // 节点角色
|
2021-11-30 16:43:16 +08:00
|
|
|
Type interface{} // 类型
|
2020-10-09 11:06:37 +08:00
|
|
|
CreatedAt interface{} // 创建时间
|
|
|
|
|
Tag interface{} // 标签
|
|
|
|
|
Description interface{} // 描述
|
|
|
|
|
Level interface{} // 级别
|
|
|
|
|
NodeId interface{} // 节点ID
|
|
|
|
|
Day interface{} // 日期
|
2021-05-19 19:03:46 +08:00
|
|
|
ServerId interface{} // 服务ID
|
2021-08-01 21:54:44 +08:00
|
|
|
OriginId interface{} // 源站ID
|
2021-05-19 19:03:46 +08:00
|
|
|
Hash interface{} // 信息内容Hash
|
|
|
|
|
Count interface{} // 重复次数
|
2021-05-23 20:46:51 +08:00
|
|
|
IsFixed interface{} // 是否已处理
|
2021-10-14 17:29:54 +08:00
|
|
|
IsRead interface{} // 是否已读
|
2021-11-30 16:43:16 +08:00
|
|
|
Params interface{} // 参数
|
2020-10-09 11:06:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func NewNodeLogOperator() *NodeLogOperator {
|
|
|
|
|
return &NodeLogOperator{}
|
|
|
|
|
}
|