lizhanwei
2020-02-26 c9fc43ded908425af405f61a1df3474dd3105e92
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
}