33 lines
2.6 KiB
Go
33 lines
2.6 KiB
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// EpicHeroInfo is the golang structure for table epic_hero_info.
|
|
type EpicHeroInfo struct {
|
|
Id int64 `json:"id" orm:"id" description:"文件编号"` // 文件编号
|
|
HeroName string `json:"heroName" orm:"hero_name" description:"配置编号"` // 配置编号
|
|
HeroCode string `json:"heroCode" orm:"hero_code" description:"文件名"` // 文件名
|
|
HeroAttrLv60 string `json:"heroAttrLv60" orm:"hero_attr_lv60" description:"文件路径"` // 文件路径
|
|
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 bool `json:"deleted" orm:"deleted" description:"是否删除"` // 是否删除
|
|
NickName string `json:"nickName" orm:"nick_name" description:"配置编号"` // 配置编号
|
|
Rarity string `json:"rarity" orm:"rarity" description:"配置编号"` // 配置编号
|
|
Role string `json:"role" orm:"role" description:"配置编号"` // 配置编号
|
|
Zodiac string `json:"zodiac" orm:"zodiac" description:"配置编号"` // 配置编号
|
|
HeadImgUrl string `json:"headImgUrl" orm:"head_img_url" description:"配置编号"` // 配置编号
|
|
Attribute string `json:"attribute" orm:"attribute" description:"配置编号"` // 配置编号
|
|
Remark string `json:"remark" orm:"remark" description:"配置编号"` // 配置编号
|
|
RawJson string `json:"rawJson" orm:"raw_json" description:"原始json"` // 原始json
|
|
SetContentJson string `json:"setContentJson" orm:"set_content_json" description:"配装json数据"` // 配装json数据
|
|
SetUpdateTime *gtime.Time `json:"setUpdateTime" orm:"set_update_time" description:"配装更新时间"` // 配装更新时间
|
|
}
|