Files
bl/common/core/info/pet/bag/PetDefaultOutboundInfo.java

18 lines
703 B
Go
Raw Normal View History

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.OutboundMessageType;
import org.nieo.seerproject.common.annotations.serialize.AutoCodec;
import org.nieo.seerproject.common.annotations.serialize.UInt;
import org.nieo.seerproject.common.net.MessageCommandIDRegistry;
import org.nieo.seerproject.common.net.OutboundMessage;
@Data
@AutoCodec
@OutboundMessageType(MessageCommandIDRegistry.Pet_Default)
public class PetDefaultOutboundInfo implements OutboundMessage {
@FieldDescription("0: 首发设置失败1: 首发设置成功")
private @UInt long isDefault;
}