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

top.lingkang.mm.annotation.MagicMapper Maven / Gradle / Ivy

Go to download

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 { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy