From 9695207a6c93c2e67c2075dd8a03184652e74982 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=99=BD=E8=8C=B6=E6=B8=85=E6=AC=A2?= Date: Sat, 7 Aug 2021 20:28:54 +0800 Subject: [PATCH] updat --- middleware/mysql/define.go | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/middleware/mysql/define.go b/middleware/mysql/define.go index e8ed7cb..8c21092 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 `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"` // 最大空闲连接数 + Host string `json:"host" yaml:"host"` // 主机 + Port uint `json:"port" yaml:"port"` // 端口 + Database string `json:"database" yaml:"database"` // 数据库 + Username string `json:"username" yaml:"username"` // 账号 + Password string `json:"password" yaml:"password"` // 密码 + Charset string `json:"charset" yaml:"charset"` // 编码 + MaxOpenConnection uint `json:"max_open_connection" yaml:"max_open_connection"` // 打开的最大连接数 + MaxIdleConnection uint `json:"max_idle_connection" yaml:"max_idle_connection"` // 最大空闲连接数 } // LogConfig 日志配置