i18n翻译

This commit is contained in:
hu xiaotong
2025-07-14 11:32:08 +08:00
parent 4ac2072fce
commit 22b6b3c93b
4 changed files with 171 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
// =================================================================================
// 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{} // 是否删除
}