Files
bl/common/core/info/pet/PetShowOutboundInfo.go
昔念 f081150178 refactor(common): 重构宠物相关信息结构
- 修改 PetInfo 和 PetEffectInfo 结构体,统一字段命名规范
- 更新 SkillInfo 结构体,增加技能等级字段
- 删除未使用的 LoginUserInfo 和 ServerInfo 结构体
- 引入 google/uuid 包,用于后续可能的唯一标识生成
2025-06-22 12:32:19 +08:00

26 lines
652 B
Go

package pet
// PetShowOutboundInfo 宠物展示输出信息
type PetShowOutboundInfo struct {
// UserId 米米号
UserId uint64 `json:"userId"`
// CatchTime 精灵获得的时间
CatchTime uint64 `json:"catchTime"`
// PetId 精灵编号
PetId uint64 `json:"petId"`
// Flag 1为显示 0为收回
Flag uint64 `json:"flag"`
// Dv 个体
Dv uint64 `json:"dv"`
// Shiny 闪
Shiny uint64 `json:"shiny"`
// SkinID 皮肤id
SkinID uint64 `json:"skinID"`
// Reserved 填充字段
Reserved uint64 `json:"reserved"`
// Reserved1 填充字段
Reserved1 uint64 `json:"reserved1"`
// Reserved2 填充字段
Reserved2 uint64 `json:"reserved2"`
}