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.
20 lines
465 B
20 lines
465 B
3 months ago
|
package gorm_v2
|
||
|
|
||
|
// 数据库参数配置,结构体
|
||
|
// 用于解决复杂的业务场景连接到多台服务器部署的 mysql、sqlserver、postgresql 数据库
|
||
|
// 具体用法参见常用开发模块:多源数据库的操作
|
||
|
|
||
|
type ConfigParams struct {
|
||
|
Write ConfigParamsDetail
|
||
|
Read ConfigParamsDetail
|
||
|
}
|
||
|
type ConfigParamsDetail struct {
|
||
|
Host string
|
||
|
DataBase string
|
||
|
Port int
|
||
|
Prefix string
|
||
|
User string
|
||
|
Pass string
|
||
|
Charset string
|
||
|
}
|