博客
关于我
四十一.属性分组新建关联-查询出分组未关联的属性
阅读量: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遇到Deadlock found when trying to get lock,解决方案
查看>>
MYSQL遇到Deadlock found when trying to get lock,解决方案
查看>>
mysql部署错误
查看>>
MySQL配置信息解读(my.cnf)
查看>>
Mysql配置文件my.ini详解
查看>>
MySQL配置文件深度解析:10个关键参数及优化技巧---强烈要求的福利来咯。
查看>>
Mysql配置表名忽略大小写(SpringBoot连接表时提示不存在,实际是存在的)
查看>>
mysql配置读写分离并在若依框架使用读写分离
查看>>
MySQL里为什么会建议不要使用SELECT *?
查看>>
MySQL里的那些日志们
查看>>
MySQL锁
查看>>
MySQL锁与脏读、不可重复读、幻读详解
查看>>
MySQL锁机制
查看>>
mysql锁机制,主从复制
查看>>
Mysql锁机制,行锁表锁
查看>>
MySQL锁表问题排查
查看>>
Mysql锁(2):表级锁
查看>>
MySQL锁,锁的到底是什么?
查看>>
MySQL错误-this is incompatible with sql_mode=only_full_group_by完美解决方案
查看>>
Mysql错误2003 -Can't connect toMySQL server on 'localhost'(10061)解决办法
查看>>