YumCore/src/main/java/pw/yumc/YumCore/config/annotation/ReadOnly.java

20 lines
440 B
Java
Raw Normal View History

package pw.yumc.YumCore.config.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
*
*
* @author
* @since 20161024 00:11
*/
@Target(ElementType.FIELD)
@Documented
@Retention(RetentionPolicy.RUNTIME)
public @interface ReadOnly {
}