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

cn.schoolwow.quickdao.annotation.Index Maven / Gradle / Ivy

There is a newer version: 5.3.1
Show newest version
package cn.schoolwow.quickdao.annotation;

import java.lang.annotation.*;

/**
 * 在字段上建立索引
 */
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@Repeatable(Indexes.class)
public @interface Index {
    /**
     * 索引类型
     */
    IndexType indexType() default IndexType.NORMAL;

    /**
     * 索引名称
     */
    String indexName() default "";

    /**
     * 索引方法
     */
    String using() default "";

    /**
     * 索引注释
     */
    String comment() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy