Files
bl/common/core/info/pet/GetPetInfoOutboundInfo.java

17 lines
599 B
Go
Raw Normal View History

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.net.MessageCommandIDRegistry;
import org.nieo.seerproject.common.net.OutboundMessage;
@AutoCodec
@Data
@OutboundMessageType(MessageCommandIDRegistry.Get_Pet_Info)
public class GetPetInfoOutboundInfo implements OutboundMessage {
@FieldDescription("精灵信息")
private PetInfo petInfo;
}