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

top.springdatajpa.zujijpa.annotation.QueryOperator Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
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 "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy