tk.mybatis.mapper.annotation.RegisterMapper Maven / Gradle / Ivy
The newest version!
package tk.mybatis.mapper.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 自动注册 Mapper 接口标记
*
* @author liuzh
* @since 3.6.0
*/
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface RegisterMapper {
}