This commit is contained in:
hu xiaotong
2025-06-20 17:17:02 +08:00
commit 85e3a6540b
310 changed files with 12475 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
import (
"github.com/gogf/gf/v2/os/gtime"
)
// EpicArtifactInfo is the golang structure for table epic_artifact_info.
type EpicArtifactInfo struct {
Id int64 `json:"id" orm:"id" description:"文件编号"` // 文件编号
ArtifactName string `json:"artifactName" orm:"artifact_name" description:"配置编号"` // 配置编号
ArtifactCode string `json:"artifactCode" orm:"artifact_code" 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:"是否删除"` // 是否删除
StatsHealth int `json:"statsHealth" orm:"stats_health" description:"文件路径"` // 文件路径
StatsAttack int `json:"statsAttack" orm:"stats_attack" description:"文件路径"` // 文件路径
StatsDefense int `json:"statsDefense" orm:"stats_defense" description:"文件路径"` // 文件路径
Rarity string `json:"rarity" orm:"rarity" description:"文件路径"` // 文件路径
Role string `json:"role" orm:"role" description:"文件路径"` // 文件路径
ArtifactNameEn string `json:"artifactNameEn" orm:"artifact_name_en" description:"配置编号"` // 配置编号
ImageUrl string `json:"imageUrl" orm:"image_url" description:"图片地址"` // 图片地址
}