com.github.chengyuxing.sql.annotation.CountQuery 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 com.github.chengyuxing.sql.page.IPageable;
import java.lang.annotation.*;
/**
* Only work with method which return type is {@link IPageable IPageable}
* or {@link com.github.chengyuxing.sql.PagedResource PagedResource}
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
@Documented
public @interface CountQuery {
/**
* Count query name.
*
* @return query name
*/
String value();
}