2021-03-02 12:32:47 +08:00
|
|
|
package request
|
2021-02-27 17:32:41 +08:00
|
|
|
|
|
|
|
type InitDB struct {
|
2021-11-15 23:00:14 +08:00
|
|
|
DBType string `json:"DBType"` // 数据库类型
|
2021-04-30 14:14:00 +08:00
|
|
|
Host string `json:"host"` // 服务器地址
|
|
|
|
Port string `json:"port"` // 数据库连接端口
|
|
|
|
UserName string `json:"userName" binding:"required"` // 数据库用户名
|
|
|
|
Password string `json:"password"` // 数据库密码
|
|
|
|
DBName string `json:"dbName" binding:"required"` // 数据库名
|
2021-02-27 17:32:41 +08:00
|
|
|
}
|