Files
bl/modules/config/service/base.go
昔念 971abd29ab ```
feat(config): 添加服务器调试模式配置和塔配置重构

- 在ServerList结构体中添加IsDebug字段用于调试模式标识
- 修改GetServerInfoList函数增加isdebug参数支持
- 移除硬编码的rpcaddr本地地址配置
- 重构塔配置模型,将tower_500和tower_600合并到tower_110
2026-01-08 23:57:22 +08:00

17 lines
219 B
Go

package service
import (
"blazing/cool"
"github.com/gogf/gf/v2/database/gdb"
)
func dbm(m cool.IModel) *gdb.Model {
return cool.DBM(m).
Cache(gdb.CacheOption{
// Duration: time.Hour,
Force: false,
})
}