package models import ( "eta/eta_mini_api/utils" "time" "github.com/beego/beego/v2/client/orm" _ "github.com/go-sql-driver/mysql" ) func init() { _ = orm.RegisterDataBase("default", "mysql", utils.MYSQL_URL_MASTER) orm.SetMaxIdleConns("default", 50) orm.SetMaxOpenConns("default", 100) master_db, _ := orm.GetDB("default") master_db.SetConnMaxLifetime(10 * time.Minute) _ = orm.RegisterDataBase("rddp", "mysql", utils.MYSQL_URL_RDDP) orm.SetMaxIdleConns("rddp", 50) orm.SetMaxOpenConns("rddp", 100) report_db, _ := orm.GetDB("rddp") report_db.SetConnMaxLifetime(10 * time.Minute) _ = orm.RegisterDataBase("eta", "mysql", utils.MYSQL_URL) orm.SetMaxIdleConns("eta", 50) orm.SetMaxOpenConns("eta", 100) db, _ := orm.GetDB("eta") db.SetConnMaxLifetime(10 * time.Minute) orm.Debug = true orm.DebugLog = orm.NewLog(utils.BinLog) // register model orm.RegisterModel( new(MsgCode), new(MyChart), new(MyReport), new(User), new(WxToken), new(Banner), new(WxSession), new(UserRecord), new(UserTemplateRecord), new(UserReadRecord), new(UserReadPermission1), new(UserReadPermission2), ) }