实现基本的监控终端管理

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

@@ -0,0 +1,20 @@
package models
// ReportNodeGroup 监控终端区域
type ReportNodeGroup struct {
Id uint32 `field:"id"` // ID
Name string `field:"name"` // 名称
State uint8 `field:"state"` // 状态
IsOn uint8 `field:"isOn"` // 是否启用
}
type ReportNodeGroupOperator struct {
Id interface{} // ID
Name interface{} // 名称
State interface{} // 状态
IsOn interface{} // 是否启用
}
func NewReportNodeGroupOperator() *ReportNodeGroupOperator {
return &ReportNodeGroupOperator{}
}