节点运行日志增加记录源站ID

This commit is contained in:
GoEdgeLab
2021-08-01 21:54:44 +08:00
parent 85f7834411
commit ee825f5d89
11 changed files with 56 additions and 23 deletions

View File

@@ -11,6 +11,7 @@ type NodeLog struct {
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"` // 重复次数
IsFixed uint8 `field:"isFixed"` // 是否已处理
@@ -26,6 +27,7 @@ type NodeLogOperator struct {
NodeId interface{} // 节点ID
Day interface{} // 日期
ServerId interface{} // 服务ID
OriginId interface{} // 源站ID
Hash interface{} // 信息内容Hash
Count interface{} // 重复次数
IsFixed interface{} // 是否已处理