diff --git a/middleware/mysql/define.go b/middleware/mysql/define.go index 2caf077..e8ed7cb 100644 --- a/middleware/mysql/define.go +++ b/middleware/mysql/define.go @@ -18,14 +18,14 @@ import ( // // Date : 9:32 下午 2021/3/1 type DBConfig struct { - Host string // 主机 - Port uint // 端口 - Database string // 数据库 - Username string // 账号 - Password string // 密码 - Charset string // 编码 - MaxOpenConnection uint // 打开的最大连接数 - MaxIdleConnection uint // 最大空闲连接数 + Host string `json:"host" yml:"host"` // 主机 + Port uint `json:"port" yml:"port"` // 端口 + Database string `json:"database" yml:"database"` // 数据库 + Username string `json:"username" yml:"username"` // 账号 + Password string `json:"password" yml:"password"` // 密码 + Charset string `json:"charset" yml:"charset"` // 编码 + MaxOpenConnection uint `json:"max_open_connection" yml:"max_open_connection"` // 打开的最大连接数 + MaxIdleConnection uint `json:"max_idle_connection" yml:"max_idle_connection"` // 最大空闲连接数 } // LogConfig 日志配置