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

org.beetl.sql.mapper.annotation.AutoMapper Maven / Gradle / Ivy

The newest version!
package org.beetl.sql.mapper.annotation;

import org.beetl.sql.mapper.MapperInvoke;

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

/**
 * 指定接口方法由哪个{@link MapperInvoke} 实现类代理调用
 */
@Target({java.lang.annotation.ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface AutoMapper {

	/**
	 * 用于指定实现
	 * @return MapperInvoke的实现类
	 *
	 */
	Class value();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy