36 lines
1.2 KiB
Go
36 lines
1.2 KiB
Go
|
|
package org.nieo.seerproject.common.net.info.pet;
|
||
|
|
|
||
|
|
import lombok.Data;
|
||
|
|
import org.nieo.seerproject.common.annotations.FieldDescription;
|
||
|
|
import org.nieo.seerproject.common.annotations.OutboundMessageType;
|
||
|
|
import org.nieo.seerproject.common.annotations.serialize.AutoCodec;
|
||
|
|
import org.nieo.seerproject.common.annotations.serialize.UInt;
|
||
|
|
import org.nieo.seerproject.common.net.MessageCommandIDRegistry;
|
||
|
|
import org.nieo.seerproject.common.net.OutboundMessage;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
@AutoCodec
|
||
|
|
@OutboundMessageType(MessageCommandIDRegistry.Pet_Show)
|
||
|
|
public class PetShowOutboundInfo implements OutboundMessage {
|
||
|
|
@FieldDescription("米米号")
|
||
|
|
private @UInt long UserID;
|
||
|
|
@FieldDescription("精灵获得的时间")
|
||
|
|
private @UInt long CatchTime;
|
||
|
|
@FieldDescription("精灵编号")
|
||
|
|
private @UInt long PetID;
|
||
|
|
@FieldDescription("1为显示 0为收回")
|
||
|
|
private @UInt long flag;
|
||
|
|
@FieldDescription("个体")
|
||
|
|
private @UInt long dv;
|
||
|
|
@FieldDescription("闪")
|
||
|
|
private @UInt long shiny;
|
||
|
|
@FieldDescription("皮肤id")
|
||
|
|
private @UInt long skinID;
|
||
|
|
@FieldDescription("填充字段")
|
||
|
|
private @UInt long reserved;
|
||
|
|
@FieldDescription("填充字段")
|
||
|
|
private @UInt long reserved1;
|
||
|
|
@FieldDescription("填充字段")
|
||
|
|
private @UInt long reserved2;
|
||
|
|
}
|