From 7e7d69e46499811a125e0ab6a77ccf379870693f Mon Sep 17 00:00:00 2001
From: yujian <yujian@123.com>
Date: 星期二, 11 六月 2019 09:09:49 +0800
Subject: [PATCH] 删除用户记录 + 用户自定义导航分类

---
 fanli/src/main/java/com/yeshi/fanli/service/impl/goods/CommonGoodsServiceImpl.java |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/service/impl/goods/CommonGoodsServiceImpl.java b/fanli/src/main/java/com/yeshi/fanli/service/impl/goods/CommonGoodsServiceImpl.java
index 190f35e..605b873 100644
--- a/fanli/src/main/java/com/yeshi/fanli/service/impl/goods/CommonGoodsServiceImpl.java
+++ b/fanli/src/main/java/com/yeshi/fanli/service/impl/goods/CommonGoodsServiceImpl.java
@@ -158,9 +158,14 @@
 		return commonGoodsMapper.listBySellerId(sellerId);
 	} 
 	
-	
 	@Override
 	public long countBySellerIdAndHasCoupon(Long sellerId) {
 		return commonGoodsMapper.countBySellerIdAndHasCoupon(sellerId);
 	}
+	
+	@Override
+	public List<CommonGoods> getByListGoodsId(List<Long> list) {
+		return commonGoodsMapper.getByListGoodsId(list);
+	}
+	
 }

--
Gitblit v1.8.0