SJA工艺
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.
 

44 lines
733 B

package conf
const DriverName = "mssql"
type DbConf struct {
Host string
Port int
User string
Pwd string
DbName string
}
var MongDbConfig DbConf = DbConf{
Host: "127.0.0.1",
Port: 27017,
DbName: "logDb",
}
//SJA生产服务器配置
var MasterDbConfig DbConf = DbConf{
Host: "localhost",
Port: 1433,
User: "lapp",
Pwd: "123fis",
DbName: "SJA_APS",
}
//线上测试服务器配置
//var MasterDbConfig DbConf = DbConf{
// Host: "127.0.0.1",
// Port: 1433,
// User: "sa",
// Pwd: "Leit2020",
// DbName: "SJA_APS",
//}
//本地服务器配置
//var MasterDbConfig DbConf = DbConf{
// Host: "127.0.0.1",
// Port: 1433,
// User: "sa",
// Pwd: "123456",
// DbName: "SJA_APS",
//}