cn.tangjiabao.halodb.core.annotation.HaloId Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of haloDb Show documentation
Show all versions of haloDb Show documentation
Orm whitch The highest development efficiency and Efficiency is the fastest
package cn.tangjiabao.halodb.core.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 标识主键
* @author [email protected]
* @date 2015-6-14 下午12:43:08
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD})
public @interface HaloId {
boolean auto() default true;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy