com.github.chengyuxing.sql.annotation.Arg Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rabbit-sql Show documentation
Show all versions of rabbit-sql Show documentation
Light wrapper of JDBC, support ddl, dml, query, plsql/procedure/function, transaction and manage sql
file.
package com.github.chengyuxing.sql.annotation;
import java.lang.annotation.*;
/**
* Specify the method arg name mapping to sql named parameter, e,g sql
* select * from table where id = :id
*
* Method:
* method(@Arg("id") int id)
*
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.PARAMETER)
@Documented
public @interface Arg {
/**
* Arg name.
*
* @return arg name
*/
String value();
}