cn.vonce.sql.annotation.SqlId Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vonce-sqlbean-core Show documentation
Show all versions of vonce-sqlbean-core Show documentation
This is the core project of Sqlbean.
The newest version!
package cn.vonce.sql.annotation;
import cn.vonce.sql.enumerate.IdType;
import java.lang.annotation.*;
/**
* 标识实体类对应的id字段
*
* @author Jovi
* @version 1.0
* @email [email protected]
* @date 2020/2/26 22:22
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
@Documented
@Inherited
public @interface SqlId {
IdType type() default IdType.NORMAL;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy