mybatis-plus-patterns
Installation
SKILL.md
MyBatis-Plus 增强 ORM
来源:https://baomidou.com/
GitHub:https://github.com/baomidou/mybatis-plus
Capability Boundaries
✅ Strong Suits
- LambdaQueryWrapper — 类型安全的查询(不用写字符串字段名)
- 分页插件 — PaginationInnerInterceptor 配置与使用
- 乐观锁 — @Version + OptimisticLockerInnerInterceptor
- 逻辑删除 — @TableLogic 全局配置 vs 单表配置
- 自动填充 — @TableField(fill) + MetaObjectHandler 实现
- ActiveRecord vs Mapper — Entity extends Model vs 独立 Mapper 接口选择
- 防全表操作 — BlockAttackInnerInterceptor
- 通用分页封装 — PageQuery → PageDTO 泛型模式