实现DNS节点远程安装

This commit is contained in:
刘祥超
2021-08-11 21:00:29 +08:00
parent 363892efb2
commit d3e4f28c69
18 changed files with 859 additions and 78 deletions

View File

@@ -1,9 +1,10 @@
package models
//
// NodeLogin 节点登录信息
type NodeLogin struct {
Id uint32 `field:"id"` // ID
NodeId uint32 `field:"nodeId"` // 节点ID
Role string `field:"role"` // 角色
Name string `field:"name"` // 名称
Type string `field:"type"` // 类型ssh,agent
Params string `field:"params"` // 配置参数
@@ -13,6 +14,7 @@ type NodeLogin struct {
type NodeLoginOperator struct {
Id interface{} // ID
NodeId interface{} // 节点ID
Role interface{} // 角色
Name interface{} // 名称
Type interface{} // 类型ssh,agent
Params interface{} // 配置参数