最近一直用nutzDao 可以实现基本需求,但是多表查询就需要自己动手写sql啦 手动写的多表关联查询分页的实现,直接代码走起 public PagerResult collectDataList(int pageNum, int pageSize, int type, String userId) { StringBuffer stringBuffer=new StringBuffer(); stringBuffer.append(" from catalog_statistics i, catalog_app_favorites f where 1=1 and f.data_id=i.catalog_pk and f.status=0"); stringBuffer.append(" and f.type='"+type+"' "); stringBuffer.append(" order by f.create_time desc"); String sqlList="select i.catalog_name,i.dept_name,dept_name_abb,i.category_name,i.catalog_abstract,i.publish_time,i.is_json,i.is_excel,i.is_csv,f.* "+stringBuffer.toString(); String sqlCount="select count(*)
nutzDao 查询封装多表关联查询返回数据的方法
最新推荐文章于 2022-04-21 11:24:10 发布
本文介绍如何使用NutzDao进行高效的多表关联查询,通过PagerResult和QueryResult类对查询结果进行封装,实现数据的便捷处理。
摘要由CSDN通过智能技术生成