mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 15:30:25 +08:00
17 lines
427 B
Go
17 lines
427 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"`
|
|
Database *string `json:"database"`
|
|
CreateTime *time.Time `json:"createTime"`
|
|
Creator *string `json:"creator"`
|
|
CreatorId *int64 `json:"creatorId"`
|
|
}
|