You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
411 B
9 lines
411 B
package request
|
|
|
|
type InitDB struct {
|
|
Host string `json:"host"` // 服务器地址
|
|
Port string `json:"port"` // 数据库连接端口
|
|
UserName string `json:"userName" binding:"required"` // 数据库用户名
|
|
Password string `json:"password"` // 数据库密码
|
|
DBName string `json:"dbName" binding:"required"` // 数据库名
|
|
}
|