22 lines
734 B
Go
22 lines
734 B
Go
|
|
package org.nieo.seerproject.common.net.info.pet.bag;
|
||
|
|
|
||
|
|
import lombok.Data;
|
||
|
|
import org.nieo.seerproject.common.annotations.FieldDescription;
|
||
|
|
import org.nieo.seerproject.common.annotations.InboundMessageType;
|
||
|
|
import org.nieo.seerproject.common.annotations.serialize.AutoCodec;
|
||
|
|
import org.nieo.seerproject.common.annotations.serialize.UInt;
|
||
|
|
import org.nieo.seerproject.common.net.InboundMessage;
|
||
|
|
import org.nieo.seerproject.common.net.MessageCommandIDRegistry;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
@AutoCodec
|
||
|
|
@InboundMessageType(MessageCommandIDRegistry.Pet_Rowei)
|
||
|
|
public class PetRoweiInboundInfo implements InboundMessage {
|
||
|
|
|
||
|
|
@FieldDescription("精灵类型ID")
|
||
|
|
private @UInt long typeId;
|
||
|
|
|
||
|
|
@FieldDescription("精灵捕捉时间")
|
||
|
|
private @UInt long catchTime;
|
||
|
|
}
|