Files
bl/modules/config/model/tower_110.go
昔念 699231ee38 ```
feat(vscode): 添加调试参数配置

为launch.json添加-debug=1参数,便于调试模式启动

docs(README): 补充zellij终端复用工具使用说明

添加x-cmd安装和zellij会话管理相关命令示例

refactor(config): 注释掉GamePort配置项

暂时注释GamePort配置项以解决配置冲突问题

refactor(xmlres): 移除未使用的gf框架依赖并注释文件监控逻辑

移除未使用的gctx、gfile、gfsnotify、glog导入包
注释init函数中的文件监控逻辑,避免不必要的文件监听
```
2026-01-02 04:11:37 +08:00

36 lines
877 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package model
import (
"blazing/cool"
)
// 表名常量定义:勇者之塔配置表
const (
TableNamedARKTowerConfig = "tower_110_config" // 勇者之塔配置表核心记录层数、BOSS数组、奖励物品/精灵)
)
// Tower110Config 勇者之塔核心配置模型(结构简洁,无额外专属字段)
type Tower110Config struct {
BaseTowerConfig
}
// -------------------------- 核心配套方法(结构与试炼之塔完全一致)--------------------------
func (*Tower110Config) TableName() string {
return TableNamedARKTowerConfig
}
func (*Tower110Config) GroupName() string {
return "default"
}
func New110TowerConfig() *Tower110Config {
return &Tower110Config{
BaseTowerConfig: NewBaseTowerConfig(),
}
}
// -------------------------- 表结构自动同步 --------------------------
func init() {
cool.CreateTable(&Tower110Config{})
}