fun.langel.cql.annotation.Update Maven / Gradle / Ivy
The newest version!
package fun.langel.cql.annotation;
import java.lang.annotation.*;
/**
* @author [email protected](GuHan)
* @since 2021/7/21 12:45 上午
**/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
public @interface Update {
String sql();
/**
* 指定数据源名称
*
* @return
*/
String direct() default "";
Class> returnType() default Object.class;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy