Files
epic-go/internal/model/entity/epic_i_18_n_mappings.go
hu xiaotong fc41c5ca73 refactor(internal): 优化 OSS 预签名 URL 缓存刷新任务和英雄数据缓存逻辑
- 注释掉 OSS预签名 URL 缓存刷新任务的定时执行代码
- 在 hero/hero.go 中增加对 Redis缓存和英雄数据集的非空校验
- 修改 OSS预签名 URL 生成逻辑,自动替换为 CDN 域名
2025-07-25 17:08:39 +08:00

26 lines
2.0 KiB
Go

// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
import (
"github.com/gogf/gf/v2/os/gtime"
)
// EpicI18NMappings is the golang structure for table epic_i18n_mappings.
type EpicI18NMappings struct {
Id int64 `json:"id" orm:"id" description:"主键ID"` // 主键ID
KeyName string `json:"keyName" orm:"key_name" description:"英文key"` // 英文key
Language string `json:"language" orm:"language" description:"语言代码(zh/en/ja/ko等)"` // 语言代码(zh/en/ja/ko等)
Value string `json:"value" orm:"value" description:"翻译值"` // 翻译值
Category string `json:"category" orm:"category" description:"分类(hero/artifact/role/attribute等)"` // 分类(hero/artifact/role/attribute等)
Status int `json:"status" orm:"status" description:"状态(1:启用 0:禁用)"` // 状态(1:启用 0:禁用)
Creator string `json:"creator" orm:"creator" description:"创建者"` // 创建者
CreateTime *gtime.Time `json:"createTime" orm:"create_time" description:"创建时间"` // 创建时间
Updater string `json:"updater" orm:"updater" description:"更新者"` // 更新者
UpdateTime *gtime.Time `json:"updateTime" orm:"update_time" description:"更新时间"` // 更新时间
Deleted int `json:"deleted" orm:"deleted" description:"是否删除"` // 是否删除
Code string `json:"code" orm:"code" description:"编码"` // 编码
}