com.jeesuite.mybatis.plugin.pagination.annotation.Pageable Maven / Gradle / Ivy
/**
*
*/
package com.jeesuite.mybatis.plugin.pagination.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 分页标注
* @description
* @author vakin
* @date 2017年6月22日
*/
@Target({ ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
@Inherited
@Documented
public @interface Pageable {
}