From 5e7b0ed4a154ad067cbcf4aa1a1c7cce32f9864c Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期五, 26 四月 2024 18:02:17 +0800 Subject: [PATCH] 唯品会链接解析升级 --- fanli/src/main/java/com/yeshi/fanli/service/impl/count/CommonOrderCountServiceImpl.java | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/service/impl/count/CommonOrderCountServiceImpl.java b/fanli/src/main/java/com/yeshi/fanli/service/impl/count/CommonOrderCountServiceImpl.java index 830a028..31c847c 100644 --- a/fanli/src/main/java/com/yeshi/fanli/service/impl/count/CommonOrderCountServiceImpl.java +++ b/fanli/src/main/java/com/yeshi/fanli/service/impl/count/CommonOrderCountServiceImpl.java @@ -54,7 +54,8 @@ @Override public Integer countOderByUidAndLess10(Long uid) { - return commonOrderCountMapper.countOderByUidAndLess10(uid); + Date date = new Date(System.currentTimeMillis() - 1000 * 60 * 60L * 24 * 90L); + return commonOrderCountMapper.countOderByUidAndLess10(uid, date,new BigDecimal(9)); } public List<ChartTDO> dayFactory(String startTime, String endTime, List<ChartTDO> list) throws Exception { -- Gitblit v1.8.0