From 8948eb44b8a84a9a2b96f06f8c10924075e05835 Mon Sep 17 00:00:00 2001 From: Administrator <Administrator@Admin> Date: 星期一, 26 十一月 2018 16:05:52 +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