摘要:
题记部分 一、物理删除&逻辑删除 物理删除:delete from table_name where xxx = ?; 逻辑删除:update table_name set deleted = 0 where xxx = ?; 二、测试 (1)增加逻辑删除字段deleted(默认1,1:存在,0:删 阅读全文
![MybatisPlus - [05] 逻辑删除](https://img2024.cnblogs.com/blog/1729889/202406/1729889-20240612163820446-1878450189.png)
摘要:
limit m,n、PageHelper、MyBatisPlus分页插件 001 || MybatisPlus分页插件 (1)引入maven依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-b 阅读全文
![MybatisPlus - [04] 分页](https://img2024.cnblogs.com/blog/1729889/202406/1729889-20240612163803247-1909940322.png)