MyBatis-Plus的使用教程
地址: https://mybatis.plus/guide/wrapper.html
重点是核心功能的CRUD接口和条件构造器
1 基本用法
/**
* 根据code查询
*/
public SysDictEntity queryMajorByCode(String code) {
EntityWrapper<SysDictEntity> wrapper = new EntityWrapper<SysDictEntity>();
wrapper.eq("type", "major");
wrapper.eq("code", code);
return selectOne(wrapper);
}
2 逻辑删除
#配置逻辑删除字段为1是删除 mybatis-plus.global-config.logic-delete-value=1 #配置逻辑删除字段为0是未删除 mybatis-plus.global-config.logic-not-delete-value=0 mybatis-plus.global-config.sql-injector=com.baomidou.mybatisplus.mapper.LogicSqlInjector
添加注解@tableLogic