mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +08:00
23 lines
663 B
Go
23 lines
663 B
Go
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"`
|
|
}
|