说明:我这里若依框架失效是因为在一个serviceImpl里执行了两个mapper,导致分页被第一个mapper消费掉了,我这里是第一个mapper的结果作为第二个mapper的参数,代码改进:
代码改进主要是在mapper.xml中,把作为参数的mapper中的sql放到第二个mapper的条件中
示例SQL
select * from A
where 1 = 1
<if test="deptId != null and deptId != ''">
and deptName in (select deptName from B where 1 = 1 and sdept.parent_id = #{deptId})
</if>
标签:mapper,分页,若依,失效,deptName,select
From: https://www.cnblogs.com/kkacc/p/16743778.html