QueryWrapper<WebCategory> wrapper = new QueryWrapper<>();
wrapper.select("category_title text","category_id value").ne("parent_id", 0);
List<Map<String, Object>> webUser2 = webCategoryMapper.selectMaps(wrapper);
QueryWrapper.select 重命名列 (实体类查询返回指定列名)
最新推荐文章于 2024-05-18 16:22:30 发布
本文介绍了如何在Java中利用QueryWrapper构建SQL查询,从WebCategory表中选择category_titletext和category_idvalue字段,排除parent_id为0的记录,获取相关数据列表。
摘要由CSDN通过智能技术生成