All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dream.system.annotation.Ignore Maven / Gradle / Ivy

The newest version!
package com.dream.system.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * java字段忽略标识,忽略后,不会进行字段值读取
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface Ignore {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy