liujie
2023-10-26 e030255c23c7ba3e2cbad1036a810d6d72fa864f
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?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.dsh.other.mapper.GameMapper">
 
    <select id="queryAll" resultType="com.dsh.other.entity.Game">
        SELECT
            ga.*,st.`name` as store,op.`name` as operation,si.`name` as site
        FROM
            t_game ga
                LEFT JOIN t_store st ON ga.storeId = st.id
                LEFT JOIN t_operator op ON ga.operationId = op.id
                LEFT JOIN t_site si on ga.siteId = si.id
        where 1=1
            <if test ="query.type==3">
                and st.id =#{query.id}
            </if>
            <if test ="query.type==2">
                and ga.operationId =#{query.id}
            </if>
            <if test="query.provinceCode!=null and query.provinceCode!=''">
                and ga.provinceCode = #{query.provinceCode}
 
            </if>
            <if test="query.cityCode!=null and query.cityCode!=''">
               and ga.cityCode = #{query.cityCode}
 
            </if>
            <if test="query.store!=null and query.store!=''">
               and  st.`name` like concat('%',#{query.store},'%')
 
            </if>
            <if test="query.site!=null and query.site!=''">
              and  si.`name`  like concat('%',#{query.site},'%')
 
            </if>
 
 
    </select>
    <select id="orderlist" resultType="map">
        SELECT *,st.`name` as storeName,si.`name` as siteName,CONCAT(DATE_FORMAT(bk.startTime, '%Y-%m-%d %H:%i:%s'), ' - ', TIME_FORMAT(bk.endTime, '%H:%i:%s')) AS timeRange
        FROM t_site_booking bk
                 LEFT JOIN t_store st on bk.storeId = st.id
                 LEFT JOIN t_site si on bk.siteId = si.id
        <where>
        <if test="provinceCode!=null and provinceCode!= ''">
          and  bk.provinceCode=#{provinceCode}
        </if>
            <if test="cityCode!=null and cityCode!= ''">
                and  bk.cityCode=#{cityCode}
            </if>
 
            <if test="store!=null and store!= ''">
                and  st.name=#{store}
            </if>
 
            <if test="peopleName!=null and peopleName!= ''">
                and  bk.booker=#{peopleName}
            </if>
 
            <if test="phone!=null and phone!= ''">
                and  bk.phone=#{phone}
            </if>
 
 
            <if test="date!=null and date!= ''">
                and bk.times like concat('%',#{date},'%')            </if>
            <if test="payMethod!=null ">
                and  bk.payType=#{payMethod}
            </if>
 
            <if test="state!=null ">
                and  bk.status=#{state}
            </if>
            <if test="storeId!=null ">
                and  st.id=#{storeId}
            </if>
            <if test="storeIds != null and storeIds.size()>0">
                AND bk.storeId IN
                <foreach collection="storeIds" separator="," item="id" open="(" close=")">
                    #{id}
                </foreach>
            </if>
        
        </where>
 
 
 
 
    </select>
</mapper>