27 lines
1.8 KiB
Go
27 lines
1.8 KiB
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// EpicGvgDefenseAttackMapping is the golang structure for table epic_gvg_defense_attack_mapping.
|
|
type EpicGvgDefenseAttackMapping struct {
|
|
Id int64 `json:"id" orm:"id" description:"id"` // id
|
|
DefenseId int64 `json:"defenseId" orm:"defense_id" description:"防守阵容"` // 防守阵容
|
|
AttackId int64 `json:"attackId" orm:"attack_id" description:"进攻阵容"` // 进攻阵容
|
|
EquipmentInfo string `json:"equipmentInfo" orm:"equipment_info" description:""` //
|
|
Artifacts string `json:"artifacts" orm:"artifacts" description:""` //
|
|
BattleStrategy string `json:"battleStrategy" orm:"battle_strategy" description:""` //
|
|
Prerequisites string `json:"prerequisites" orm:"prerequisites" description:""` //
|
|
ImportantNotes string `json:"importantNotes" orm:"important_notes" 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:"是否删除"` // 是否删除
|
|
}
|