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

commons.box.app.annotation.SQL Maven / Gradle / Ivy

The newest version!
package commons.box.app.annotation;

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

/**
 * 用于表达查询规则
 */
@Retention(value = RetentionPolicy.RUNTIME)
@Target(value = {ElementType.FIELD, ElementType.METHOD, ElementType.TYPE})
public @interface SQL {
    /**
     * 查询字符串
     *
     * @return
     */
    String[] value() default {};
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy