17 lines
581 B
Go
17 lines
581 B
Go
|
|
package org.nieo.seerproject.common.net.info.pet;
|
||
|
|
|
||
|
|
import lombok.Data;
|
||
|
|
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_Show)
|
||
|
|
public class PetShowInboundInfo implements InboundMessage {
|
||
|
|
private @UInt long catchTime;
|
||
|
|
private @UInt long flag;
|
||
|
|
}
|