104 lines
3.9 KiB
Go
104 lines
3.9 KiB
Go
package controller
|
||
|
||
import "blazing/logic/service/common"
|
||
|
||
// GetPetInfoInboundInfo 定义请求或响应数据结构。
|
||
type GetPetInfoInboundInfo struct {
|
||
Head common.TomeeHeader `cmd:"2301" struc:"skip"`
|
||
CatchTime uint32
|
||
}
|
||
|
||
// GetUserBagPetInfoInboundEmpty 定义请求或响应数据结构。
|
||
type GetUserBagPetInfoInboundEmpty struct {
|
||
Head common.TomeeHeader `cmd:"4483" struc:"skip"`
|
||
}
|
||
|
||
// SavePetBagOrderInboundInfo 定义请求或响应数据结构。
|
||
type SavePetBagOrderInboundInfo struct {
|
||
Head common.TomeeHeader `cmd:"4484" struc:"skip"`
|
||
|
||
PetListLen uint32 `struc:"int32,sizeof=PetList"`
|
||
PetList []uint32
|
||
BackupPetListLen uint32 `struc:"int32,sizeof=BackupPetList"`
|
||
BackupPetList []uint32
|
||
}
|
||
|
||
// PetReleaseInboundInfo 定义请求或响应数据结构。
|
||
type PetReleaseInboundInfo struct {
|
||
Head common.TomeeHeader `cmd:"2304" struc:"skip"`
|
||
CatchTime uint32
|
||
Flag uint32 `json:"flag" fieldDescription:"0为放入仓库,1为放入背包" autoCodec:"true" uint:"true"`
|
||
}
|
||
|
||
// PetShowInboundInfo 定义请求或响应数据结构。
|
||
type PetShowInboundInfo struct {
|
||
Head common.TomeeHeader `cmd:"2305" struc:"skip"`
|
||
CatchTime uint32 `codec:"catchTime" inboundMessageType:"Pet_Show"`
|
||
Flag uint32 `codec:"flag"`
|
||
}
|
||
|
||
// PetOneCureInboundInfo 定义请求或响应数据结构。
|
||
type PetOneCureInboundInfo struct {
|
||
Head common.TomeeHeader `cmd:"2310" struc:"skip"`
|
||
CatchTime uint32 `json:"catchTime" fieldDescription:"精灵捕捉时间" uint:"true"`
|
||
}
|
||
|
||
// PET_ROWEI 定义请求或响应数据结构。
|
||
type PET_ROWEI struct {
|
||
Head common.TomeeHeader `cmd:"2321" struc:"skip"`
|
||
ID uint32
|
||
CatchTime uint32 `json:"catchTime" fieldDescription:"精灵捕捉时间" uint:"true"`
|
||
}
|
||
|
||
// PET_RETRIEVE 定义请求或响应数据结构。
|
||
type PET_RETRIEVE struct {
|
||
Head common.TomeeHeader `cmd:"2322" struc:"skip"`
|
||
CatchTime uint32 `json:"catchTime" fieldDescription:"精灵捕捉时间" uint:"true"`
|
||
}
|
||
|
||
// PetDefaultInboundInfo 定义请求或响应数据结构。
|
||
type PetDefaultInboundInfo struct {
|
||
Head common.TomeeHeader `cmd:"2308" struc:"skip"`
|
||
CatchTime uint32 `json:"catchTime" fieldDescription:"精灵捕捉时间" uint:"true" autoCodec:"true" inboundMessageType:"Pet_Default"`
|
||
}
|
||
|
||
// PetSetExpInboundInfo 定义请求或响应数据结构。
|
||
type PetSetExpInboundInfo struct {
|
||
Head common.TomeeHeader `cmd:"2318" struc:"skip"`
|
||
CatchTime uint32 `fieldDescription:"精灵获取时间" uint:"true" autoCodec:"true"`
|
||
Exp int64 `struc:"uint32"`
|
||
}
|
||
|
||
// PetBargeListInboundInfo 定义请求或响应数据结构。
|
||
type PetBargeListInboundInfo struct {
|
||
Head common.TomeeHeader `cmd:"2309" struc:"skip"`
|
||
StartPetId uint32 `description:"开始精灵id" codec:"startPetId"`
|
||
EndPetId uint32 `description:"结束精灵id" codec:"endPetId"`
|
||
}
|
||
|
||
// ChangeSkillInfo 定义请求或响应数据结构。
|
||
type ChangeSkillInfo struct {
|
||
Head common.TomeeHeader `cmd:"2312" struc:"skip"`
|
||
CatchTime uint32 `json:"catchTime"`
|
||
Reserved uint32 `json:"reserved"`
|
||
Reserved1 uint32 `json:"reserved1"`
|
||
HasSkill uint32 `json:"hasSkill"`
|
||
ReplaceSkill uint32 `json:"replaceSkill"`
|
||
}
|
||
|
||
// C2S_Skill_Sort 定义请求或响应数据结构。
|
||
type C2S_Skill_Sort struct {
|
||
Head common.TomeeHeader `cmd:"2328" struc:"skip"`
|
||
CapTm uint32 `json:"capTm"`
|
||
Skill [4]uint32 `json:"skill_1"`
|
||
}
|
||
|
||
// C2S_PetFusion 定义请求或响应数据结构。
|
||
type C2S_PetFusion struct {
|
||
Head common.TomeeHeader `cmd:"2351" struc:"skip"`
|
||
Mcatchtime uint32 `json:"mcatchtime" msgpack:"mcatchtime"`
|
||
Auxcatchtime uint32 `json:"auxcatchtime" msgpack:"auxcatchtime"`
|
||
Item1 [4]uint32 `json:"item1" msgpack:"item1"`
|
||
GoldItem1 [2]uint32 `json:"gold_item1" msgpack:"gold_item1"`
|
||
}
|