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

cn.jiangzeyin.database.annotation.FieldConfig Maven / Gradle / Ivy

There is a newer version: 1.2.11
Show newest version
package cn.jiangzeyin.database.annotation;

import cn.jiangzeyin.sequence.ISequence;

import java.lang.annotation.*;

/**
 * 实体属性配置
 * Created by jiangzeyin on 2017/12/9.
 */
@Documented
@Target(ElementType.FIELD)
@Inherited
@Retention(RetentionPolicy.RUNTIME)
public @interface FieldConfig {
    /**
     * insert 是默认值
     *
     * @return str
     */
    String insertDefValue() default "";

    /**
     * 主键生成器
     *
     * @return class
     */
    Class sequence() default ISequence.class;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy