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

top.wboost.common.annotation.QueryByLike Maven / Gradle / Ivy

package top.wboost.common.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * 查询时使用like方式
 * @author jwSun
 * @date 2017年4月5日 下午2:19:29
 */
@Target({ ElementType.METHOD, ElementType.FIELD })
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Deprecated
public @interface QueryByLike {

    String s();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy