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

fun.langel.cql.annotation.Delete 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/10/19 10:19 下午
 **/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
public @interface Delete {
    String sql();

    Mode mode() default Mode.DIRECT;

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

    Class returnType() default Object.class;}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy