数据库配置增加jsonTag

This commit is contained in:
白茶清欢 2021-08-07 14:32:13 +08:00
parent d9e202001b
commit 8445564446

View File

@ -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 日志配置