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

com.stellariver.milky.common.base.TSSearch Maven / Gradle / Ivy

There is a newer version: 0.2.6
Show newest version
package com.stellariver.milky.common.base;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

@Retention(RetentionPolicy.RUNTIME)
public @interface TSSearch {

    String index() default "";

    /**
     * 当对应字段是字符串,在多元索引中以模糊索引存在,可以使用like注解,类似关系型数据库的LIKE查询
     * @return 是否启动模糊搜索
     */
    boolean like() default false;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy