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

fun.langel.cql.annotation.Select Maven / Gradle / Ivy

The newest version!
package fun.langel.cql.annotation;

import fun.langel.cql.enums.Mode;

import java.lang.annotation.*;

/**
 * @author [email protected](GuHan)
 * @since 2021/7/21 12:44 上午
 **/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
public @interface Select {

    String sql();

    Mode mode() default Mode.DIRECT;

    /**
     * 指定数据源名称
     *
     * @return
     */
    String direct() default "";

    Class returnType() default Object.class;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy