1
935090232@qq.com
2020-12-02 cf713cd99c13c7d6a3fb01c292d3d588ec60b688
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" 
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
 
<mapper namespace="com.matrix.system.hiveErp.dao.TjVipSumDao">
 
 
 
    <!-- 人头数统计 -->
    <select id="countVisitByTime" 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
 
        </foreach>
        from area where id=1
    </select>
 
 
 
 
    </mapper>