Files
epic-go/internal/model/entity/gear_set_info.go
hu xiaotong 85e3a6540b init
2025-06-20 17:17:02 +08:00

37 lines
3.4 KiB
Go

// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
import (
"github.com/gogf/gf/v2/os/gtime"
)
// GearSetInfo is the golang structure for table gear_set_info.
type GearSetInfo struct {
Id int64 `json:"id" orm:"id" description:"装备ID"` // 装备ID
Level int `json:"level" orm:"level" description:"装备等级"` // 装备等级
GearId int64 `json:"gearId" orm:"gear_id" description:""` //
Enhance int `json:"enhance" orm:"enhance" description:"强化等级"` // 强化等级
GearType string `json:"gearType" orm:"gear_type" description:"类型,六个部位之一"` // 类型,六个部位之一
GearSetType string `json:"gearSetType" orm:"gear_set_type" description:""` //
MainStatType string `json:"mainStatType" orm:"main_stat_type" description:"主属性类型"` // 主属性类型
MainStatValue int `json:"mainStatValue" orm:"main_stat_value" description:"主属性值"` // 主属性值
SubStatOneType string `json:"subStatOneType" orm:"sub_stat_one_type" description:"副属性1类型"` // 副属性1类型
SubStatOneValue int `json:"subStatOneValue" orm:"sub_stat_one_value" description:"副属性1值"` // 副属性1值
SubStatTwoType string `json:"subStatTwoType" orm:"sub_stat_two_type" description:"副属性2类型"` // 副属性2类型
SubStatTwoValue int `json:"subStatTwoValue" orm:"sub_stat_two_value" description:"副属性2值"` // 副属性2值
SubStatThreeType string `json:"subStatThreeType" orm:"sub_stat_three_type" description:"副属性3类型"` // 副属性3类型
SubStatThreeValue int `json:"subStatThreeValue" orm:"sub_stat_three_value" description:"副属性3值"` // 副属性3值
SubStatFourType string `json:"subStatFourType" orm:"sub_stat_four_type" description:"副属性4类型"` // 副属性4类型
SubStatFourValue int `json:"subStatFourValue" orm:"sub_stat_four_value" description:"副属性4值"` // 副属性4值
AccountCode string `json:"accountCode" orm:"account_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:"是否删除"` // 是否删除
TenantId int64 `json:"tenantId" orm:"tenant_id" description:"租户编号"` // 租户编号
}