Mybatis-plus一对多分页数据条数不正确的处理
作者:Csea_
这篇文章主要介绍了Mybatis-plus一对多分页数据条数不正确的处理,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教
Mybatis-plus一对多分页数据条数不正确
今天在进行一对多的left join处理的时候发现分页的数据量不正确,后来把打印的sql去数据库执行,查询出来的确实是10条,只不过是1:N的数据是10条。
这并不是想要的,应该查到主表的数据是10条。
在xml里进行更改collection的映射
<resultMap id="recordEventMap" type="MaterialRecordEventEntity"> <id column="id" property="id"></id> <result column="user_id" property="userId"></result> <result column="type_id" property="typeId"></result> <result column="create_time" property="createTime"></result> <collection property="children" column="id" select="queryRecordItem"></collection> </resultMap>
<select id="pageInfo" resultMap="recordEventMap"> SELECT re.id, re.user_id, re.type_id, re.create_time FROM record_event re ORDER BY re.id DESC </select>
<select id="queryRecordItem" resultType="RecordEntity"> SELECT mr.sum, material_id, mr.project_id, mr.bom_id, mr.storage_id, mr.company, mr.remark FROM nzic_material_record mr WHERE mr.tra_no = #{id} </select>
主要就是把collection的映射数据拿一个子查询去映射
column就是从表要关联主表的那个字段
这样查询出来的数据就是正常的了
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。