Files
bl/logic/service/pet/BargeList.go
昔念 10af34fdad
All checks were successful
ci/woodpecker/push/my-first-workflow Pipeline was successful
```
refactor(controller): 移除独立的服务模块并将结构体定义内联到控制器中

移除了 egg、leiyi、pet 和 systemtime 独立服务包中的结构体定义,
将所有 C2S 和 S2C 结构体直接定义在相应的控制器文件中,同时更新了
导入路径和服务调用方式,统一使用 common.TomeeHeader 并优化了代码组织结构。

BREAKING CHANGE: 结构体定义从独立的服务包移动到控制器文件内部
2026-03-04 02:24:25 +08:00

38 lines
1.5 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package pet
import (
"blazing/logic/service/common"
)
// PetBargeListInboundInfo 对应Java的PetBargeListInboundInfo实现InboundMessage接口
type PetBargeListInboundInfo struct {
Head common.TomeeHeader `cmd:"2309" struc:"skip"`
StartPetId uint32 `description:"开始精灵id" codec:"startPetId"` // @UInt long 对应Go的uint32无符号64位
EndPetId uint32 `description:"结束精灵id" codec:"endPetId"` // 字段标签模拟注解功能(描述、编解码标识)
}
type C2S_9756 struct {
Head common.TomeeHeader `cmd:"9756" struc:"skip"`
}
// PetBargeListInfo 对应Java的PetBargeListInfo类
type PetBargeListInfo struct {
PetId uint32 `description:"精灵ID"` // @UInt long 对应Go的uint32无符号64位整数
EnCntCnt uint32 `description:"未知"` // public字段在Go中通过首字母大写导出
IsCatched uint32 `description:"捕获记录"` // 结构体标签模拟@FieldDescription注解
IsKilled uint32 `description:"击杀记录"` // 字段名采用帕斯卡命名法首字母大写以匹配Java的public访问权限
}
type PetBargeListOutboundInfo struct {
// 对应Java的List<PetBargeListInfo>Go中用切片+指针实现动态列表
PetBargeListLen uint32 `struc:"sizeof=PetBargeList"`
PetBargeList []PetBargeListInfo `description:"返回的精灵信息" codec:"petBargeList"`
}
type S2C_9756 struct {
UseEV uint32 //用掉的学习力
}
type S2C_50006 struct {
ItemID uint32
Count uint32
}