refactor(common): 重构宠物相关信息结构

- 修改 PetInfo 和 PetEffectInfo 结构体,统一字段命名规范
- 更新 SkillInfo 结构体,增加技能等级字段
- 删除未使用的 LoginUserInfo 和 ServerInfo 结构体
- 引入 google/uuid 包,用于后续可能的唯一标识生成
This commit is contained in:
2025-06-22 12:32:19 +08:00
parent 720294ad27
commit f081150178
139 changed files with 3065 additions and 87 deletions

View File

@@ -0,0 +1,9 @@
package pet
// PetSetExpInboundInfo 宠物设置经验输入信息
type PetSetExpInboundInfo struct {
// CatchTime 精灵获取时间
CatchTime uint64 `json:"catchTime"`
// Exp 分配经验
Exp uint64 `json:"exp"`
}