package vo import "time" type SelectDataDbVO struct { //models.BaseModel Id *int64 `json:"id"` Name *string `json:"name"` Host *string `json:"host"` Port *int `json:"port"` Type *string `json:"type"` Params *string `json:"params"` Database *string `json:"database"` Username *string `json:"username"` ProjectId *int64 `json:"projectId"` Project *string `json:"project"` Env *string `json:"env"` EnvId *int64 `json:"envId"` CreateTime *time.Time `json:"createTime"` Creator *string `json:"creator"` CreatorId *int64 `json:"creatorId"` EnableSshTunnel *int8 `json:"enableSshTunnel"` SshTunnelMachineId *uint64 `json:"sshTunnelMachineId"` }