fctom1215
2020-03-08 9f10b837804f147eb7a2722147c7917e0523d27c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.safeluck.aykj.annotation;
 
import com.safeluck.aykj.decoder.IMessageCoder;
import com.safeluck.aykj.decoder.Int16Coder;
import com.safeluck.aykj.decoder.Int32Coder;
 
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
 
/**
 * Created by zhouwei on 2016/12/1.
 */
@Length(4)
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD})
public @interface Int32 {
//    Class<? extends IMessageCoder<?>>[] coder() default Int32Coder.class;
}