yichen
2 years ago
9 changed files with 39 additions and 3 deletions
@ -0,0 +1,16 @@ |
|||||||
|
package com.fanruan; |
||||||
|
|
||||||
|
import java.lang.annotation.ElementType; |
||||||
|
import java.lang.annotation.Retention; |
||||||
|
import java.lang.annotation.RetentionPolicy; |
||||||
|
import java.lang.annotation.Target; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author Yichen Dai |
||||||
|
* @date 2022/8/19 10:50 |
||||||
|
*/ |
||||||
|
@Target({ElementType.TYPE}) |
||||||
|
@Retention(RetentionPolicy.RUNTIME) |
||||||
|
public @interface RemoteClass { |
||||||
|
public String remoteClassName() default ""; |
||||||
|
} |
Loading…
Reference in new issue