top.springdatajpa.zujijpa.annotation.QueryOperator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zuji-jpa Show documentation
Show all versions of zuji-jpa Show documentation
To solve complex dynamic SQL
package top.springdatajpa.zujijpa.annotation;
import top.springdatajpa.zujijpa.enums.Operator;
import java.lang.annotation.*;
/**
* @author azheng
* @since 2019/9/30
*/
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface QueryOperator {
Operator value() default Operator.EQ;
String fieldName() default "";
}