mirror of
				https://gitee.com/dromara/mayfly-go
				synced 2025-11-04 08:20:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package form
 | 
						|
 | 
						|
type MachineForm struct {
 | 
						|
	Id                 uint64 `json:"id"`
 | 
						|
	ProjectId          uint64 `json:"projectId"`
 | 
						|
	ProjectName        string `json:"projectName"`
 | 
						|
	Name               string `json:"name" binding:"required"`
 | 
						|
	Ip                 string `json:"ip" binding:"required"`       // IP地址
 | 
						|
	Username           string `json:"username" binding:"required"` // 用户名
 | 
						|
	AuthMethod         int8   `json:"authMethod" binding:"required"`
 | 
						|
	Password           string `json:"password"`
 | 
						|
	Port               int    `json:"port" binding:"required"` // 端口号
 | 
						|
	Remark             string `json:"remark"`
 | 
						|
	EnableSshTunnel    int8   `json:"enableSshTunnel"`    // 是否启用ssh隧道
 | 
						|
	SshTunnelMachineId uint64 `json:"sshTunnelMachineId"` // ssh隧道机器id
 | 
						|
	EnableRecorder     int8   `json:"enableRecorder"`     // 是否启用终端回放记录
 | 
						|
}
 | 
						|
 | 
						|
type MachineRunForm struct {
 | 
						|
	MachineId int64  `binding:"required"`
 | 
						|
	Cmd       string `binding:"required"`
 | 
						|
}
 | 
						|
 | 
						|
type MachineFileForm struct {
 | 
						|
	Id        uint64
 | 
						|
	Name      string `binding:"required"`
 | 
						|
	MachineId uint64 `binding:"required"`
 | 
						|
	Type      int    `binding:"required"`
 | 
						|
	Path      string `binding:"required"`
 | 
						|
}
 | 
						|
 | 
						|
type MachineScriptForm struct {
 | 
						|
	Id          uint64
 | 
						|
	Name        string `binding:"required"`
 | 
						|
	MachineId   uint64 `binding:"required"`
 | 
						|
	Type        int    `binding:"required"`
 | 
						|
	Description string `binding:"required"`
 | 
						|
	Params      string
 | 
						|
	Script      string `binding:"required"`
 | 
						|
}
 | 
						|
 | 
						|
type MachineCreateFileForm struct {
 | 
						|
	Path string `binding:"required"`
 | 
						|
	Type string `binding:"required"`
 | 
						|
}
 | 
						|
 | 
						|
type MachineFileUpdateForm struct {
 | 
						|
	Content string `binding:"required"`
 | 
						|
	Id      uint64 `binding:"required"`
 | 
						|
	Path    string `binding:"required"`
 | 
						|
}
 |