27 lines
1004 B
Go
27 lines
1004 B
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{} // 是否删除
|
|
}
|