Files
EdgeAPI/internal/db/models/node_group_model.go

25 lines
668 B
Go
Raw Permalink Normal View History

2020-07-22 22:17:53 +08:00
package models
// 节点分组
type NodeGroup struct {
Id uint32 `field:"id"` // ID
Name string `field:"name"` // 名称
2020-10-28 18:21:15 +08:00
ClusterId uint32 `field:"clusterId"` // 集群ID
2020-07-22 22:17:53 +08:00
Order uint32 `field:"order"` // 排序
2020-09-23 10:12:57 +08:00
CreatedAt uint64 `field:"createdAt"` // 创建时间
2020-07-22 22:17:53 +08:00
State uint8 `field:"state"` // 状态
}
type NodeGroupOperator struct {
Id interface{} // ID
Name interface{} // 名称
2020-10-28 18:21:15 +08:00
ClusterId interface{} // 集群ID
2020-07-22 22:17:53 +08:00
Order interface{} // 排序
CreatedAt interface{} // 创建时间
State interface{} // 状态
}
func NewNodeGroupOperator() *NodeGroupOperator {
return &NodeGroupOperator{}
}