mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-14 20:41:15 +08:00
52 lines
1.6 KiB
Go
52 lines
1.6 KiB
Go
package cluster_dto
|
|
|
|
import (
|
|
"github.com/eolinker/go-common/auto"
|
|
)
|
|
|
|
type Item struct {
|
|
Id string `json:"id"`
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
ClusterNum int `json:"cluster_num"`
|
|
CreateTime auto.TimeLabel `json:"create_time" `
|
|
UpdateTime auto.TimeLabel `json:"update_time"`
|
|
Updater auto.Label `json:"updater" aolabel:"user"`
|
|
Creator auto.Label `json:"creator" aolabel:"user"`
|
|
}
|
|
type Simple struct {
|
|
Id string `json:"id,omitempty"`
|
|
Name string `json:"name,omitempty"`
|
|
}
|
|
type Cluster struct {
|
|
Id string `json:"id,omitempty"`
|
|
Name string `json:"name,omitempty"`
|
|
Description string `json:"description,omitempty"`
|
|
}
|
|
type SimpleWithCluster struct {
|
|
Id string `json:"id,omitempty"`
|
|
Name string `json:"name,omitempty"`
|
|
Clusters []*Cluster `json:"clusters,omitempty"`
|
|
}
|
|
|
|
type Detail struct {
|
|
Updater auto.Label `json:"updater"`
|
|
Creator auto.Label `json:"creator"`
|
|
Id string `json:"id,omitempty"`
|
|
Name string `json:"name,omitempty"`
|
|
Description string `json:"description,omitempty"`
|
|
Prefix string `json:"prefix,omitempty"`
|
|
CreateTime auto.TimeLabel `json:"create_time,omitempty"`
|
|
UpdateTime auto.TimeLabel `json:"update_time,omitempty"`
|
|
CanDelete bool `json:"can_delete"`
|
|
}
|
|
|
|
type Node struct {
|
|
Id string `json:"id"`
|
|
Name string `json:"name"`
|
|
Admins []string `json:"manager_address"`
|
|
Peers []string `json:"peer_address"`
|
|
Gateways []string `json:"service_address"`
|
|
Status int `json:"status"`
|
|
}
|