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

org.nutz.dao.entity.annotation.Index Maven / Gradle / Ivy

package org.nutz.dao.entity.annotation;

/**
 * 声明一个数据表的索引
 * 
 * @see TableIndexes
 * 
 * @author zozoh([email protected])
 */
public @interface Index {

    /**
     * 是否是唯一性索引
     */
    boolean unique() default true;

    /**
     * 索引的名称
     */
    String name();

    /**
     * 按顺序给出索引的字段名(推荐,用 Java 的字段名)
     */
    String[] fields();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy