admin
2019-10-10 e19ce4be094d93f68bdb6ee1c28e9caa502bf2c4
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();
}