From ed0921d4c7e4556002c8079eeb9f3218b6357872 Mon Sep 17 00:00:00 2001
From: 喻健 <喻健@Admin>
Date: 星期三, 14 十一月 2018 17:53:13 +0800
Subject: [PATCH] 搜索接口添加筛选比例范围

---
 fanli/src/main/java/com/yeshi/fanli/service/impl/lable/QualityGoodsServiceImpl.java |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/service/impl/lable/QualityGoodsServiceImpl.java b/fanli/src/main/java/com/yeshi/fanli/service/impl/lable/QualityGoodsServiceImpl.java
index 34f1eee..c062454 100644
--- a/fanli/src/main/java/com/yeshi/fanli/service/impl/lable/QualityGoodsServiceImpl.java
+++ b/fanli/src/main/java/com/yeshi/fanli/service/impl/lable/QualityGoodsServiceImpl.java
@@ -244,15 +244,15 @@
 	
 	@Override
 	public List<QualityFactory> listRecommendBykey(long start, int count, String key, Integer hasQuan,
-			Integer userType, Double startprice, Double endprice, Integer sort) {
+			Integer userType, Double startprice, Double endprice, Double startTkRate, Double endTkRate, Integer sort) {
 		return qualityFactoryMapper.listRecommendBykey(start, count, key, hasQuan, userType,
-				startprice, endprice, sort);
+				startprice, endprice, startTkRate, endTkRate, sort);
 	}
 
 	@Override
 	public long countRecommendBykey(String key, Integer hasQuan, Integer userType,
-			Double startprice, Double endprice) {
-		return qualityFactoryMapper.countRecommendBykey(key, hasQuan, userType, startprice, endprice);
+			Double startprice, Double endprice, Double startTkRate, Double endTkRate) {
+		return qualityFactoryMapper.countRecommendBykey(key, hasQuan, userType, startprice, endprice, startTkRate, endTkRate);
 	}
 	
 	

--
Gitblit v1.8.0