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

20 lines
440 B
Java

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 2016年10月24日 上午00:11
*/
@Target(ElementType.FIELD)
@Documented
@Retention(RetentionPolicy.RUNTIME)
public @interface ReadOnly {
}