yujian
2019-06-24 a4f0b85ccd00e0f2d9e5e71d6ef7aad33353b85c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.yeshi.utils.annotation;
 
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
 
@Documented
@Target(ElementType.FIELD)
@Inherited
@Retention(RetentionPolicy.RUNTIME)
public @interface Map {
    String value();
}