20 lines
755 B
Go
20 lines
755 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;
|
|||
|
|
|
|||
|
|
@AutoCodec
|
|||
|
|
@Data
|
|||
|
|
@InboundMessageType(MessageCommandIDRegistry.Pet_Release)
|
|||
|
|
public class PetReleaseInboundInfo implements InboundMessage {
|
|||
|
|
@FieldDescription("精灵生成时间")
|
|||
|
|
private @UInt long catchTime;
|
|||
|
|
@FieldDescription("0为放入仓库,1为放入背包")
|
|||
|
|
private @UInt long flag;
|
|||
|
|
}
|