All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sneakxy.mybatis.commons.annotations.Total Maven / Gradle / Ivy

The newest version!
/**
 * Copyright (c)2002-2006 by OpenSymphony
 * All rights reserved.
 */
package com.sneakxy.mybatis.commons.annotations;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * 分页总数量自定义语句注解
 * @author 潜行的青衣
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface Total {
	String[] value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy