skyouc
2024-12-21 c635d78b479510ebe2556a420948effcd30a0731
zy-asrs-framework/src/main/java/com/zy/asrs/framework/domain/QueryField.java
@@ -1,22 +1,22 @@
package com.zy.asrs.framework.domain;
import java.lang.annotation.*;
/**
 * 查询条件注解
 *
 * @author vincent
 * @since 2021-09-01 20:48:16
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD, ElementType.ANNOTATION_TYPE})
public @interface QueryField {
    // 字段名称
    String value() default "";
    // 查询方式
    QueryType type() default QueryType.LIKE;
}
package com.zy.asrs.framework.domain;
import java.lang.annotation.*;
/**
 * 查询条件注解
 *
 * @author vincent
 * @since 2021-09-01 20:48:16
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD, ElementType.ANNOTATION_TYPE})
public @interface QueryField {
    // 字段名称
    String value() default "";
    // 查询方式
    QueryType type() default QueryType.LIKE;
}