top.lingkang.mm.annotation.MagicMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mybatis-magic Show documentation
Show all versions of mybatis-magic Show documentation
mybatis能力扩展框架,兼顾mybatis的mapper.xml编写操作数据库。
The newest version!
package top.lingkang.mm.annotation;
import java.lang.annotation.*;
/**
* 用于扫描加载 mapper 接口,例如
*
* {@code
* @MagicMapper
* public interface UserMapper {
* @Select("select * from t_user")
* List all();
* }
* }
*
*
* @author lingkang
* Created by 2024/3/6
*/
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
public @interface MagicMapper {
}