更新
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package quant.rich.emoney.annotation;
|
||||
|
||||
import static java.lang.annotation.ElementType.METHOD;
|
||||
import static java.lang.annotation.RetentionPolicy.RUNTIME;
|
||||
|
||||
import java.lang.annotation.Documented;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
/**
|
||||
* 注解在方法上以获取对 EmoneyProtocol 的额外操作
|
||||
*/
|
||||
@Documented
|
||||
@Retention(RUNTIME)
|
||||
@Target(METHOD)
|
||||
public @interface ResponseDecodeExtension {
|
||||
String protocolId();
|
||||
int order() default -1;
|
||||
}
|
||||
Reference in New Issue
Block a user