2021-08-08 15:47:48 +08:00
|
|
|
package models
|
2021-05-25 15:49:13 +08:00
|
|
|
|
|
|
|
|
// NSCluster 域名服务器集群
|
|
|
|
|
type NSCluster struct {
|
2021-05-26 14:40:05 +08:00
|
|
|
Id uint32 `field:"id"` // ID
|
|
|
|
|
IsOn uint8 `field:"isOn"` // 是否启用
|
|
|
|
|
Name string `field:"name"` // 集群名
|
|
|
|
|
InstallDir string `field:"installDir"` // 安装目录
|
|
|
|
|
State uint8 `field:"state"` // 状态
|
2021-06-02 11:53:24 +08:00
|
|
|
AccessLog string `field:"accessLog"` // 访问日志配置
|
2021-08-11 21:00:29 +08:00
|
|
|
GrantId uint32 `field:"grantId"` // 授权ID
|
2021-05-25 15:49:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type NSClusterOperator struct {
|
2021-05-26 14:40:05 +08:00
|
|
|
Id interface{} // ID
|
|
|
|
|
IsOn interface{} // 是否启用
|
|
|
|
|
Name interface{} // 集群名
|
|
|
|
|
InstallDir interface{} // 安装目录
|
|
|
|
|
State interface{} // 状态
|
2021-06-02 11:53:24 +08:00
|
|
|
AccessLog interface{} // 访问日志配置
|
2021-08-11 21:00:29 +08:00
|
|
|
GrantId interface{} // 授权ID
|
2021-05-25 15:49:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func NewNSClusterOperator() *NSClusterOperator {
|
|
|
|
|
return &NSClusterOperator{}
|
|
|
|
|
}
|