From 6d53e418a9c419178306995988a1a2f89d9089a4 Mon Sep 17 00:00:00 2001
From: yujian <yujian>
Date: 星期三, 13 三月 2019 12:06:20 +0800
Subject: [PATCH] 封禁用户提交

---
 fanli/src/main/java/com/yeshi/fanli/service/impl/count/HongBaoV2CountServiceImpl.java |   23 ++++++++++++++++++++++-
 1 files changed, 22 insertions(+), 1 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/service/impl/count/HongBaoV2CountServiceImpl.java b/fanli/src/main/java/com/yeshi/fanli/service/impl/count/HongBaoV2CountServiceImpl.java
index 041a30e..e660eb4 100644
--- a/fanli/src/main/java/com/yeshi/fanli/service/impl/count/HongBaoV2CountServiceImpl.java
+++ b/fanli/src/main/java/com/yeshi/fanli/service/impl/count/HongBaoV2CountServiceImpl.java
@@ -25,6 +25,7 @@
 import com.yeshi.fanli.service.inter.count.HongBaoV2CountService;
 import com.yeshi.fanli.service.inter.order.CommonOrderService;
 import com.yeshi.fanli.service.inter.user.UserInfoService;
+import com.yeshi.fanli.vo.order.HongBaoV2VO;
 
 @Service
 public class HongBaoV2CountServiceImpl implements HongBaoV2CountService {
@@ -182,7 +183,12 @@
 			String year, String startTime, String endTime) throws Exception {
 		return hongBaoV2CountMapper.countHongBaoNum(channel, dateType, state, year, startTime, endTime);
 	}
-
+	
+	@Override
+	public List<Map<String, Object>> countHongBaoType(Integer dateType, Integer type, String year,
+			String startTime, String endTime) throws Exception {
+		return hongBaoV2CountMapper.countHongBaoType(dateType, type, year, startTime, endTime);
+	}
 	
 	@Override
 	public List<Map<String, Object>> getProportionByType(Integer dateType, Integer type, String year,
@@ -277,4 +283,19 @@
 	public Date getLastHongBaoTime(Long uid) {
 		return hongBaoV2CountMapper.getLastHongBaoTime(uid);
 	}
+	
+	
+	@Override
+	public List<Map<String, Object>> count24HOderByChannel(String channel, Integer type, String years,
+			String startTime, String endTime) throws Exception{
+		return hongBaoV2CountMapper.count24HOderByChannel(channel, type, years, startTime, endTime);
+	}
+	
+	
+	@Override
+	public List<HongBaoV2VO> listShareAndInviteMoney(long start, int count, String date) {
+		return hongBaoV2CountMapper.listShareAndInviteMoney(start, count, date);
+	}
+	
+	
 }

--
Gitblit v1.8.0