123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- package models
- import (
- "eta/eta_mini_crm/utils"
- "time"
- "github.com/beego/beego/v2/client/orm"
- _ "github.com/go-sql-driver/mysql"
- )
- func init() {
- _ = 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("default", "mysql", utils.MYSQL_URL_MASTER)
- orm.SetMaxIdleConns("default", 50)
- orm.SetMaxOpenConns("default", 100)
- db, _ := orm.GetDB("default")
- db.SetConnMaxLifetime(10 * time.Minute)
- orm.Debug = true
- orm.DebugLog = orm.NewLog(utils.BinLog)
- orm.RegisterModel(
- new(SysSession),
- new(SysRole),
- new(SysUser),
- new(SysDepartment),
- new(SysMenu),
- new(SysRoleMenuMapping),
- new(ChartPermission),
- new(UserChartPermissionMapping),
- new(User),
- new(SysMessageReport),
- new(CrmConfig),
- new(UserChangeRecord),
- new(ReportPdf),
- new(ReportPushStatus),
- )
- }
|