mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +08:00
28 lines
805 B
Go
28 lines
805 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"`
|
|
Remark *string `json:"remark"`
|
|
TagId *int64 `json:"tagId"`
|
|
TagPath *string `json:"tagPath"`
|
|
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"`
|
|
}
|