org.n3r.eql.eqler.annotations.Dynamic Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eql Show documentation
Show all versions of eql Show documentation
a simple wrapper framework for jdbc to seperate sql and java code
package org.n3r.eql.eqler.annotations;
import java.lang.annotation.*;
@Documented
@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
public @interface Dynamic {
/**
* 是否只能做dynamic参数使用。
*
* @return 是否只能做dynamic参数使用
*/
boolean sole() default true;
/**
* 用做命名dynamic参数
*
* @return 用做命名dynamic参数
*/
String name() default "";
}