Files
mayfly-go/server/internal/db/api/vo/instance.go

25 lines
702 B
Go
Raw Normal View History

2023-08-27 11:07:29 +08:00
package vo
import "time"
2023-10-31 12:36:04 +08:00
type InstanceListVO struct {
2023-08-27 11:07:29 +08:00
Id *int64 `json:"id"`
Name *string `json:"name"`
Host *string `json:"host"`
Port *int `json:"port"`
Type *string `json:"type"`
Params *string `json:"params"`
Sid *string `json:"sid"`
2023-08-27 11:07:29 +08:00
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"`
}