16 lines
654 B
Go
16 lines
654 B
Go
|
|
package org.nieo.seerproject.common.net.info.nono;
|
||
|
|
|
||
|
|
import lombok.Data;
|
||
|
|
import org.nieo.seerproject.common.annotations.FieldDescription;
|
||
|
|
import org.nieo.seerproject.common.annotations.InboundMessageType;
|
||
|
|
import org.nieo.seerproject.common.annotations.serialize.UInt;
|
||
|
|
import org.nieo.seerproject.common.net.InboundMessage;
|
||
|
|
import org.nieo.seerproject.common.net.MessageCommandIDRegistry;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
@InboundMessageType(MessageCommandIDRegistry.Nono_Follow_Or_Home)
|
||
|
|
public class NonoFollowOrHomeInboundInfo implements InboundMessage {
|
||
|
|
@FieldDescription("1为跟随 0为收回 且如果为收回 那么后续结构不需要发送")
|
||
|
|
private @UInt long flag;
|
||
|
|
}
|