24 lines
797 B
Go
24 lines
797 B
Go
|
|
package org.nieo.seerproject.common.net.info.misc;
|
||
|
|
|
||
|
|
import lombok.AllArgsConstructor;
|
||
|
|
import lombok.Builder;
|
||
|
|
import lombok.Data;
|
||
|
|
import lombok.NoArgsConstructor;
|
||
|
|
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;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
@Builder
|
||
|
|
@AutoCodec
|
||
|
|
@NoArgsConstructor
|
||
|
|
@AllArgsConstructor
|
||
|
|
@InboundMessageType(MessageCommandIDRegistry.Talk_Cate)
|
||
|
|
public class TalkCateInboundInfo implements InboundMessage {
|
||
|
|
@FieldDescription("奖品的type, 即ID")
|
||
|
|
private @UInt long id;
|
||
|
|
}
|