From a53f7ba4b7cb54d9120e55fb0925f33dd01c8651 Mon Sep 17 00:00:00 2001 From: Jiang Peng <2622360564@qq.com> Date: Thu, 7 Mar 2024 20:45:44 +0800 Subject: [PATCH] =?UTF-8?q?=E5=95=86=E5=93=81=E5=85=B1=E6=9C=89=E5=B1=9E?= =?UTF-8?q?=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../product/service/CategoryInfoService.java | 31 ------------------- .../impl/AttributeGroupServiceImpl.java | 2 ++ .../service/impl/CategoryInfoServiceImpl.java | 3 +- .../service/impl/RuleInfoServiceImpl.java | 5 --- 4 files changed, 3 insertions(+), 38 deletions(-) diff --git a/muyu-modules/muyu-product/muyu-product-server/src/main/java/com/muyu/product/service/CategoryInfoService.java b/muyu-modules/muyu-product/muyu-product-server/src/main/java/com/muyu/product/service/CategoryInfoService.java index 88f33e3..472d000 100644 --- a/muyu-modules/muyu-product/muyu-product-server/src/main/java/com/muyu/product/service/CategoryInfoService.java +++ b/muyu-modules/muyu-product/muyu-product-server/src/main/java/com/muyu/product/service/CategoryInfoService.java @@ -47,35 +47,4 @@ public interface CategoryInfoService extends IService { CategoryCommonElementResp getTemplateAttributeByCateGoryId(Long cateGoryId); - -// /** -// * 通过品类id查找包括父级属性集合,属性组集合,品牌集合 -// */ -// Result parentCommonElement(Long categoryId); -// -// /** -// * 通过品类id获取属性组集合 -// */ -// List getAttributeGroupList(Long categoryId); -// -// /** -// * 通过品类id获取属性集合 -// */ -// List getAttributeInfoList(Long categoryId); -// -// -// /** -// * 通过品类id获取品牌集合 -// */ -// List getBrandInfoList(Long categoryId); -// -// public boolean save(CategoryInfoSaveModel categoryInfoSaveModel); -// -// /** -// * 通过品类id过去父级以上的属性、属性组、品牌集合 -// */ -// CategoryParentCommonElementResp parentCommonElement(Long categoryId); -// -// CategoryCommonElementResp getTemplateAttributeByCateGoryId(Long categoryId); - } diff --git a/muyu-modules/muyu-product/muyu-product-server/src/main/java/com/muyu/product/service/impl/AttributeGroupServiceImpl.java b/muyu-modules/muyu-product/muyu-product-server/src/main/java/com/muyu/product/service/impl/AttributeGroupServiceImpl.java index be21369..9a45651 100644 --- a/muyu-modules/muyu-product/muyu-product-server/src/main/java/com/muyu/product/service/impl/AttributeGroupServiceImpl.java +++ b/muyu-modules/muyu-product/muyu-product-server/src/main/java/com/muyu/product/service/impl/AttributeGroupServiceImpl.java @@ -117,4 +117,6 @@ public class AttributeGroupServiceImpl extends ServiceImpl if (ObjUtils.notNull(ruleInfo.getStatus())){ queryWrapper.eq(RuleInfo::getStatus, ruleInfo.getStatus()); } - - - - - return list(queryWrapper); }