package safeluck.drive.evaluation.platformMessage.decoder;
|
|
import com.safeluck.aykj.annotation.Length;
|
|
import java.lang.annotation.ElementType;
|
import java.lang.annotation.Retention;
|
import java.lang.annotation.RetentionPolicy;
|
import java.lang.annotation.Target;
|
|
/**
|
* Created by zw on 2017/6/15.
|
*/
|
|
@Length(2)
|
@Retention(RetentionPolicy.RUNTIME)
|
@Target({ElementType.FIELD})
|
public @interface SPEED {
|
// Class<? extends IMessageCoder<?>>[] coder() default Int32Coder.class;
|
}
|