增加DNS服务商账号管理

This commit is contained in:
GoEdgeLab
2020-11-11 21:32:25 +08:00
parent 1d1cebbe47
commit 761cb6ca60
17 changed files with 488 additions and 0 deletions

View File

@@ -27,6 +27,7 @@ type Server struct {
Version uint32 `field:"version"` // 版本号
CreatedAt uint64 `field:"createdAt"` // 创建时间
State uint8 `field:"state"` // 状态
DnsName string `field:"dnsName"` // DNS名称
}
type ServerOperator struct {
@@ -55,6 +56,7 @@ type ServerOperator struct {
Version interface{} // 版本号
CreatedAt interface{} // 创建时间
State interface{} // 状态
DnsName interface{} // DNS名称
}
func NewServerOperator() *ServerOperator {