注释类型 MagicMapper


@Target(TYPE) @Retention(RUNTIME) @Documented @Inherited public @interface MagicMapper
用于扫描加载 mapper 接口,例如
 
   @MagicMapper
   public interface UserMapper {
       @Select("select * from t_user")
       List<UserEntity> all();
   }
 
 
作者:
lingkang Created by 2024/3/6