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

cool.scx.jdbc.mapping.Index Maven / Gradle / Ivy

There is a newer version: 2.7.4
Show newest version
package cool.scx.jdbc.mapping;

public interface Index {

    /**
     * 索引名称
     *
     * @return index
     */
    String name();

    /**
     * 对应列名称
     *
     * @return a
     */
    String columnName();

    /**
     * 是否唯一值
     *
     * @return a
     */
    boolean unique();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy