博客
关于我
四十一.属性分组新建关联-查询出分组未关联的属性
阅读量: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/

你可能感兴趣的文章
multivariate_normal TypeError: ufunc ‘add‘ output (typecode ‘O‘) could not be coerced to provided……
查看>>
MySQL DBA 数据库优化策略
查看>>
multi_index_container
查看>>
mutiplemap 总结
查看>>
MySQL Error Handling in Stored Procedures---转载
查看>>
MVC 区域功能
查看>>
MySQL FEDERATED 提示
查看>>
mysql generic安装_MySQL 5.6 Generic Binary安装与配置_MySQL
查看>>
Mysql group by
查看>>
MySQL I 有福啦,窗口函数大大提高了取数的效率!
查看>>
mysql id自动增长 初始值 Mysql重置auto_increment初始值
查看>>
MySQL in 太多过慢的 3 种解决方案
查看>>
Mysql Innodb 锁机制
查看>>
MySQL InnoDB中意向锁的作用及原理探
查看>>
MySQL InnoDB事务隔离级别与锁机制深入解析
查看>>
Mysql InnoDB存储引擎 —— 数据页
查看>>
Mysql InnoDB存储引擎中的checkpoint技术
查看>>
Mysql InnoDB存储引擎中缓冲池Buffer Pool、Redo Log、Bin Log、Undo Log、Channge Buffer
查看>>
MySQL InnoDB引擎的锁机制详解
查看>>
Mysql INNODB引擎行锁的3种算法 Record Lock Next-Key Lock Grap Lock
查看>>