admin
2018-12-04 a0a009f30e0e14907e48d6d263e12512f0ccf081
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);
   }