实现基本的监控终端管理

This commit is contained in:
刘祥超
2021-09-08 19:34:31 +08:00
parent 838d33648f
commit 1ea7fe0213
13 changed files with 402 additions and 36 deletions

View File

@@ -14,6 +14,7 @@ type ReportNode struct {
Status string `field:"status"` // 状态
State uint8 `field:"state"` // 状态
CreatedAt uint64 `field:"createdAt"` // 创建时间
GroupIds string `field:"groupIds"` // 分组ID
}
type ReportNodeOperator struct {
@@ -29,6 +30,7 @@ type ReportNodeOperator struct {
Status interface{} // 状态
State interface{} // 状态
CreatedAt interface{} // 创建时间
GroupIds interface{} // 分组ID
}
func NewReportNodeOperator() *ReportNodeOperator {