SpringBoot MyBatis-Plus 多表关联查询——不写 SQL 也能联表
MyBatis-Plus 虽然强大,但多表关联一直不太方便。这篇讲几种实现方案。
一、方案一:手动 SQL(推荐)
Mapper
public interface OrderMapper extends BaseMapper<Order> {Select("SELECT o.*, p.product_name, p.price F…
2026/7/12 0:16:18