org.noear.wood.annotation.Exclude Maven / Gradle / Ivy
package org.noear.wood.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 排除(不属于表字段,或者不使用)
*
* @author noear
* @since 3.2
* */
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
public @interface Exclude {
}