Files
bl/common/core/info/misc/GetQuadrupleExeTimeOutboundInfo.java

18 lines
732 B
Go
Raw Normal View History

package org.nieo.seerproject.common.net.info.misc;
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.Get_Quadruple_Exe_Time)
public class GetQuadrupleExeTimeOutboundInfo implements OutboundMessage {
@FieldDescription("返回已经使用的四倍时间, 以秒为单位")
private @UInt long quadrupleExeTime;
}