2021-01-08 15:37:32 +08:00
|
|
|
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"`
|
2022-07-10 12:14:06 +08:00
|
|
|
Params *string `json:"params"`
|
2021-01-08 15:37:32 +08:00
|
|
|
Database *string `json:"database"`
|
2021-07-28 18:03:19 +08:00
|
|
|
Username *string `json:"username"`
|
|
|
|
|
ProjectId *int64 `json:"projectId"`
|
|
|
|
|
Project *string `json:"project"`
|
|
|
|
|
Env *string `json:"env"`
|
|
|
|
|
EnvId *int64 `json:"envId"`
|
2021-01-08 15:37:32 +08:00
|
|
|
CreateTime *time.Time `json:"createTime"`
|
|
|
|
|
Creator *string `json:"creator"`
|
|
|
|
|
CreatorId *int64 `json:"creatorId"`
|
2022-07-20 01:37:25 +00:00
|
|
|
|
|
|
|
|
EnableSSH *int `json:"enable_ssh"`
|
|
|
|
|
SSHHost *string `json:"ssh_host"`
|
|
|
|
|
SSHPort *int `json:"ssh_port"`
|
|
|
|
|
SSHUser *string `json:"ssh_user"`
|
2021-01-08 15:37:32 +08:00
|
|
|
}
|