25 lines
1.7 KiB
Go
25 lines
1.7 KiB
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// EpicHeroUserBuild is the golang structure for table epic_hero_user_build.
|
|
type EpicHeroUserBuild struct {
|
|
Id int64 `json:"id" orm:"id" description:"文件编号"` // 文件编号
|
|
ArtifactCode string `json:"artifactCode" orm:"artifact_code" description:"配置编号"` // 配置编号
|
|
HeroCode string `json:"heroCode" orm:"hero_code" description:"文件名"` // 文件名
|
|
HeroHeathBuild float64 `json:"heroHeathBuild" orm:"hero_heath_build" description:"文件路径"` // 文件路径
|
|
HeroAttackBuild float64 `json:"heroAttackBuild" orm:"hero_attack_build" description:"文件路径"` // 文件路径
|
|
HeroDefBuild float64 `json:"heroDefBuild" orm:"hero_def_build" 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:"是否删除"` // 是否删除
|
|
}
|