- 注释掉 OSS预签名 URL 缓存刷新任务的定时执行代码 - 在 hero/hero.go 中增加对 Redis缓存和英雄数据集的非空校验 - 修改 OSS预签名 URL 生成逻辑,自动替换为 CDN 域名
28 lines
1.0 KiB
Go
28 lines
1.0 KiB
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package do
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// EpicI18NMappings is the golang structure of table epic_i18n_mappings for DAO operations like Where/Data.
|
|
type EpicI18NMappings struct {
|
|
g.Meta `orm:"table:epic_i18n_mappings, do:true"`
|
|
Id interface{} // 主键ID
|
|
KeyName interface{} // 英文key
|
|
Language interface{} // 语言代码(zh/en/ja/ko等)
|
|
Value interface{} // 翻译值
|
|
Category interface{} // 分类(hero/artifact/role/attribute等)
|
|
Status interface{} // 状态(1:启用 0:禁用)
|
|
Creator interface{} // 创建者
|
|
CreateTime *gtime.Time // 创建时间
|
|
Updater interface{} // 更新者
|
|
UpdateTime *gtime.Time // 更新时间
|
|
Deleted interface{} // 是否删除
|
|
Code interface{} // 编码
|
|
}
|