leniu-java-mybatis
Installation
SKILL.md
leniu MyBatis 规范
项目特征速查
| 项 | 值 |
|---|---|
| XML 位置 | 与 Mapper 接口同目录(非 resources/mapper/) |
| 分页 | PageHelper → PageMethod.startPage(PageDTO) → PageVO.of(list) |
| 逻辑删除 | 1=删除,2=正常(与 RuoYi 相反) |
| Service | 无接口,直接 @Service 类,Mapper 字段名统一用 baseMapper |
| 循环依赖 | 跨模块依赖用 @Autowired @Lazy |
Mapper 接口模板
基础 Mapper
@Mapper
public interface XxxMapper extends BaseMapper<XxxEntity> {
Related skills