From 6d0b3902c57e4145a83cd1dfd423d6d1ab7df6d0 Mon Sep 17 00:00:00 2001
From: 935090232@qq.com <ak473600000>
Date: Wed, 02 Dec 2020 23:39:13 +0800
Subject: [PATCH] Merge branch 'master' into hive2.0

---
 zq-erp/src/main/resources/mybatis/mapper/hive/TjVipSumDao.xml |   38 +++++++++++++++++++++++++-------------
 1 files changed, 25 insertions(+), 13 deletions(-)

diff --git a/zq-erp/src/main/resources/mybatis/mapper/hive/TjVipSumDao.xml b/zq-erp/src/main/resources/mybatis/mapper/hive/TjVipSumDao.xml
index 5f7946e..4910f53 100644
--- a/zq-erp/src/main/resources/mybatis/mapper/hive/TjVipSumDao.xml
+++ b/zq-erp/src/main/resources/mybatis/mapper/hive/TjVipSumDao.xml
@@ -7,26 +7,38 @@
 
 
 	<!-- 人头数统计 -->
-	<select id="countVisitByTime" resultType="java.util.TreeMap">
-
+	<select id="customerHeadCompare" resultType="java.util.TreeMap">
 		select
-
 		<foreach collection="list" index="index" item="item"   separator=","  >
-
-			SELECT count(*)  from (SELECT DISTINCT vip_id  from  achieve_new
-				where
-				<![CDATA[datatime > #{item.beginTime}   and  datatime < #{item.endTime} ]]>
-				<if test="shopId !=null and shopId !=0 " >
-					and SHOP_ID = #{shopId}
-				</if>
-			) t
+			(
+				SELECT count(*)  from (
+					SELECT DISTINCT vip_id  from  achieve_new where <![CDATA[datatime > #{item.beginTime}   and  datatime < #{item.endTime} ]]>
+					<if test="shopId !=null and shopId !=0 " >
+						and SHOP_ID = #{shopId}
+					</if>
+				) t
+			) as t${index}
 
 		</foreach>
 		from area where id=1
 	</select>
 
+	<!-- 人次统计 -->
+	<select id="customerEnterCountCompare"  resultType="java.util.TreeMap">
+		select
+		<foreach collection="list" index="index" item="item"   separator=","  >
+			(
+			SELECT count(*)  from (
+			SELECT DISTINCT vip_id   ,date_format(datatime,'%Y-%m-%d') from  achieve_new where <![CDATA[datatime > #{item.beginTime}   and  datatime < #{item.endTime} ]]>
+			<if test="shopId !=null and shopId !=0 " >
+				and SHOP_ID = #{shopId}
+			</if>
+			) t
+			) as t${index}
 
+		</foreach>
+		from area where id=1
+	</select>
 
-
-	</mapper>
+</mapper>
 	

--
Gitblit v1.9.1