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

org.nutz.mongo.annotation.MoIgnore Maven / Gradle / Ivy

package org.nutz.mongo.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 zozoh([email protected])
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD, ElementType.METHOD})
@Documented
public @interface MoIgnore {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy