
com.lingdonge.db.annotation.Invisible Maven / Gradle / Ivy
package com.lingdonge.db.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 自定义的注解,用于排除多余的变量(自定义注解,过滤多余字段)
*/
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Invisible {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy