mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-04-21 19:55:17 +08:00
refactor: 后端包结构重构、去除无用的文件
This commit is contained in:
21
server/internal/devops/api/vo/db.go
Normal file
21
server/internal/devops/api/vo/db.go
Normal file
@@ -0,0 +1,21 @@
|
||||
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"`
|
||||
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"`
|
||||
}
|
||||
Reference in New Issue
Block a user