19 lines
627 B
Go
19 lines
627 B
Go
|
|
package org.nieo.seerproject.common.net.info.pet;
|
||
|
|
|
||
|
|
import lombok.Data;
|
||
|
|
import lombok.experimental.SuperBuilder;
|
||
|
|
import org.nieo.seerproject.common.annotations.FieldDescription;
|
||
|
|
import org.nieo.seerproject.common.annotations.OutboundMessageType;
|
||
|
|
import org.nieo.seerproject.common.net.MessageCommandIDRegistry;
|
||
|
|
import org.nieo.seerproject.common.net.OutboundMessage;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
@SuperBuilder
|
||
|
|
@OutboundMessageType(MessageCommandIDRegistry.Note_Update_Skill)
|
||
|
|
public class UpdateSkillOutboundInfo implements OutboundMessage {
|
||
|
|
@FieldDescription("更新技能数据")
|
||
|
|
private List<UpdateSkillInfo> infoArray;
|
||
|
|
}
|