博客
关于我
四十一.属性分组新建关联-查询出分组未关联的属性
阅读量:246 次
发布时间:2019-02-28

本文共 2221 字,大约阅读时间需要 7 分钟。

属性分组下的新建关联功能如下:

在这里插入图片描述
在这里插入图片描述

接下来需要查询出分组未关联的属性。

AttrGroupController类添加如下接口:

/**     * 查询分组未关联的属性     *     * @param attrgroupId     * @param params     * @return     */    @GetMapping("/{attrgroupId}/noattr/relation")    public R attrNoRelation(@PathVariable("attrgroupId") Long attrgroupId,                            @RequestParam Map
params) { PageUtils page = attrService.getNoRelationAttr(params, attrgroupId); return R.ok().put("page", page); }

AttrService类添加如下方法:

/**     * 查询出分组未关联的属性     *     * @param params     * @param attrgroupId     * @return     */    PageUtils getNoRelationAttr(Map
params, Long attrgroupId);

AttrServiceImpl类添加getNoRelationAttr()方法相关实现:

@Override    public PageUtils getNoRelationAttr(Map
params, Long attrgroupId) { //1、当前分组只能关联自己所属的分类里面的所有属性 AttrGroupEntity attrGroupEntity = attrGroupDao.selectById(attrgroupId); Long catelogId = attrGroupEntity.getCatelogId(); //2、当前分组只能关联别的分组没有引用的属性 //2-1.查询当前分类下的其他分组 List
attrGroupEntities = attrGroupDao.selectList(new QueryWrapper
().eq("catelog_id", catelogId)); List
collect = attrGroupEntities.stream().map(item -> { return item.getAttrGroupId(); }).collect(Collectors.toList()); //2-2、查询分组关联的属性 List
attrgroupRelationEntities = relationDao.selectList(new QueryWrapper
().in("attr_group_id", collect)); List
attrIds = attrgroupRelationEntities.stream().map(item -> { return item.getAttrId(); }).collect(Collectors.toList()); //2-3、从当前分类的所有属性中移除这些属性 QueryWrapper
wrapper = new QueryWrapper
().eq("catelog_id", catelogId).eq("attr_type", ProductConstant.AttrEnum.ATTR_TYPE_BASE.getCode()); if (attrIds != null && attrIds.size() > 0) { wrapper.notIn("attr_id", attrIds); } //支持模糊查询 String key = (String) params.get("key"); if (!StringUtils.isEmpty(key)) { wrapper.and((w) -> { w.eq("attr_id", key).or().like("attr_name", key); }); } IPage
page = this.page(new Query
().getPage(params), wrapper); PageUtils pageUtils = new PageUtils(page); return pageUtils; }

测试效果:

影视分类有如下两个属性:

在这里插入图片描述
影视相关分组已经关联了一个属性,如下:
在这里插入图片描述
在这里插入图片描述

点击新建关联,会查询出分组未关联的属性,如下:

在这里插入图片描述

查询出分组未关联的属性完成。

转载地址:http://sxjp.baihongyu.com/

你可能感兴趣的文章
MySQL 日期时间类型的选择
查看>>
Mysql 时间操作(当天,昨天,7天,30天,半年,全年,季度)
查看>>
MySQL 是如何加锁的?
查看>>
MySQL 是怎样运行的 - InnoDB数据页结构
查看>>
mysql 更新子表_mysql 在update中实现子查询的方式
查看>>
MySQL 有什么优点?
查看>>
mysql 权限整理记录
查看>>
mysql 权限登录问题:ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)
查看>>
MYSQL 查看最大连接数和修改最大连接数
查看>>
MySQL 查看有哪些表
查看>>
mysql 查看锁_阿里/美团/字节面试官必问的Mysql锁机制,你真的明白吗
查看>>
MySql 查询以逗号分隔的字符串的方法(正则)
查看>>
MySQL 查询优化:提速查询效率的13大秘籍(避免使用SELECT 、分页查询的优化、合理使用连接、子查询的优化)(上)
查看>>
mysql 查询数据库所有表的字段信息
查看>>
【Java基础】什么是面向对象?
查看>>
mysql 查询,正数降序排序,负数升序排序
查看>>
MySQL 树形结构 根据指定节点 获取其下属的所有子节点(包含路径上的枝干节点和叶子节点)...
查看>>
mysql 死锁 Deadlock found when trying to get lock; try restarting transaction
查看>>
mysql 死锁(先delete 后insert)日志分析
查看>>
MySQL 死锁了,怎么办?
查看>>