From 8c04d27e5cebb7e654c208533e9567c4df2c8acc Mon Sep 17 00:00:00 2001 From: yujian <yujian@163.com> Date: 星期四, 12 十二月 2019 14:21:44 +0800 Subject: [PATCH] 券时间限制 --- fanli/src/main/java/com/yeshi/fanli/service/inter/count/UserInfoCountService.java | 21 ++++++++++++++++----- 1 files changed, 16 insertions(+), 5 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/service/inter/count/UserInfoCountService.java b/fanli/src/main/java/com/yeshi/fanli/service/inter/count/UserInfoCountService.java index f1b5db2..6ca35f1 100644 --- a/fanli/src/main/java/com/yeshi/fanli/service/inter/count/UserInfoCountService.java +++ b/fanli/src/main/java/com/yeshi/fanli/service/inter/count/UserInfoCountService.java @@ -2,8 +2,8 @@ import java.math.BigDecimal; import java.util.List; -import java.util.Map; +import com.yeshi.fanli.dto.ChartTDO; import com.yeshi.fanli.vo.user.UserGoldCoinVO; @@ -51,11 +51,11 @@ * 缁熻鏂板鐢ㄦ埛 * @return */ - public List<Map<String, Object>> countNewUserByDate(String channel,Integer type,String years, String startTime, String endTime) throws Exception; + public List<ChartTDO> countNewUserByDate(String channel,Integer type,String years, String startTime, String endTime) throws Exception; - public List<Map<String, Object>> getTodayBuyRate(String channel, Integer type, String years, String startTime, + public List<ChartTDO> getTodayBuyRate(String channel, Integer type, String years, String startTime, String endTime) throws Exception; @@ -69,7 +69,18 @@ * @param count * @return */ - public List<UserGoldCoinVO> listByUserGoldCoin(long start, int count, int type); - + public List<UserGoldCoinVO> listByUserGoldCoin(long start, int count, int type, String key); + + public long countByUserGoldCoin(int type, String key); + + /** + * 缁熻鍓╀綑閲戝竵 + * @param start + * @param count + * @return + */ + public List<UserGoldCoinVO> listByHasGoldCoin(long start, int count, String key); + + public long countByHasGoldCoin(String key); } -- Gitblit v1.8.0