mirror of
				https://gitee.com/dromara/mayfly-go
				synced 2025-11-04 16:30:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			666 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			666 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package vo
 | 
						|
 | 
						|
import "time"
 | 
						|
 | 
						|
type InstanceListVO struct {
 | 
						|
	Id         *int64     `json:"id"`
 | 
						|
	Name       *string    `json:"name"`
 | 
						|
	Host       *string    `json:"host"`
 | 
						|
	Port       *int       `json:"port"`
 | 
						|
	Type       *string    `json:"type"`
 | 
						|
	Params     *string    `json:"params"`
 | 
						|
	Username   *string    `json:"username"`
 | 
						|
	Remark     *string    `json:"remark"`
 | 
						|
	CreateTime *time.Time `json:"createTime"`
 | 
						|
	Creator    *string    `json:"creator"`
 | 
						|
	CreatorId  *int64     `json:"creatorId"`
 | 
						|
 | 
						|
	UpdateTime *time.Time `json:"updateTime"`
 | 
						|
	Modifier   *string    `json:"modifier"`
 | 
						|
	ModifierId *int64     `json:"modifierId"`
 | 
						|
 | 
						|
	SshTunnelMachineId int `json:"sshTunnelMachineId"`
 | 
						|
}
 |