22 lines
751 B
Go
22 lines
751 B
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.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;
|
||
|
|
|
||
|
|
@AutoCodec
|
||
|
|
@Data
|
||
|
|
@InboundMessageType(MessageCommandIDRegistry.Pet_Room)
|
||
|
|
public class RoomPetInfoInboundInfo implements InboundMessage {
|
||
|
|
|
||
|
|
@FieldDescription("精灵所属主人的用户ID")
|
||
|
|
private @UInt long ownerID;
|
||
|
|
|
||
|
|
@FieldDescription("精灵的捕获时间")
|
||
|
|
private @UInt long catchTime;
|
||
|
|
}
|