package item import ( "blazing/logic/service/common" "blazing/modules/blazing/model" ) type ChangePlayerClothOutboundInfo struct { UserID uint32 `description:"玩家id" codec:"uint"` ClothesLen uint32 `struc:"sizeof=ClothList" fieldDesc:"穿戴装备的信息" json:"clothes_len"` ClothList []model.PeopleItemInfo `description:"玩家装备列表" codec:"list"` // List -> 指针切片 } type ChangePlayerClothInboundInfo struct { Head common.TomeeHeader `cmd:"2604" struc:"skip"` ClothesLen uint32 `struc:"sizeof=ClothList" fieldDesc:"穿戴装备的信息" json:"clothes_len"` ClothList []uint32 `description:"玩家装备列表" codec:"list"` }