liujie
2023-07-25 9b1188a004df6585d1836e85e22ee24a91b5fd62
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
<?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.course.mapper.TOpenCityMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.dsh.guns.modular.system.model.TOpenCity">
        <id column="id" property="id" />
        <result column="code" property="code" />
        <result column="lon" property="lon" />
        <result column="lat" property="lat" />
        <result column="isQualifications" property="isQualifications" />
        <result column="areaName" property="areaName" />
        <result column="cityName" property="cityName" />
        <result column="provinceName" property="provinceName" />
        <result column="flag" property="flag" />
        <result column="insertTime" property="insertTime" />
        <result column="insertUser" property="insertUser" />
        <result column="updateTime" property="updateTime" />
        <result column="updateUser" property="updateUser" />
    </resultMap>
 
    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        id, code, lon, lat, isQualifications, areaName, cityName, provinceName, flag, insertTime, insertUser, updateTime, updateUser
    </sql>
 
    <!--根据条件查询开通城市列表-->
    <select id="getOpenCityList" resultType="map" parameterType="com.baomidou.mybatisplus.extension.plugins.pagination.Page">
        SELECT * FROM (SELECT ocb.str as business,oc.* FROM t_open_city as oc
        LEFT JOIN (
        SELECT GROUP_CONCAT(
        CONCAT((case when businessType = 1 then 'motorcycle'
        when businessType = 2 then ''
        when businessType = 3 then ''
        when businessType = 4 then 'city express'
        when businessType = 5 then ''
        when businessType = 6 then ''
        else '' end),' :',sort)) as str,openCityId from t_open_city_business where flag != 3 GROUP BY openCityId
        ) as ocb on ocb.openCityId = oc.id) as o
        <where>
            o.flag != 3
            <if test="beginTime != null and beginTime != '' and endTime != null and endTime != ''">
                AND (o.insertTime between CONCAT(#{beginTime},' 00:00:00') and CONCAT(#{endTime},' 23:59:59'))
            </if>
            <if test="name != null and name != ''">
                <if test="language == 1">
                    and o.chineseName LIKE CONCAT('%',#{name},'%')
                </if>
                <if test="language == 2">
                    and o.englishName LIKE CONCAT('%',#{name},'%')
                </if>
                <if test="language == 3">
                    and o.indonesianName LIKE CONCAT('%',#{name},'%')
                </if>
            </if>
        </where>
        order by o.id desc
    </select>
 
    <!--根据城市ID获取经营业务-->
    <select id="getBusinessByCityId" resultType="map">
        SELECT DATE_FORMAT(bb.insertTime,'%Y-%m-%d') as insertTimeStr,
        case when bb.businessType = 1 then '摩托车'
        when bb.businessType = 2 then ''
        when bb.businessType = 3 then ''
        when bb.businessType = 4 then '同城快送'
        when bb.businessType = 5 then ''
        when bb.businessType = 6 then ''
        else '' end as businessTypeStr,bb.*
        FROM t_open_city_business as bb where bb.openCityId = #{openCityId} and bb.flag != 3
    </select>
    <select id="getBusinessListByCityId" resultType="java.util.Map">
        SELECT DATE_FORMAT(bb.insertTime,'%Y-%m-%d') as insertTimeStr,
               case when bb.businessType = 1 then 'motorcycle'
                    when bb.businessType = 2 then ''
                    when bb.businessType = 3 then ''
                    when bb.businessType = 4 then 'city express'
                    when bb.businessType = 5 then ''
                    when bb.businessType = 6 then ''
                    else '' end as businessTypeStr,bb.*
        FROM t_open_city_business as bb where bb.openCityId = #{openCityId} and bb.flag != 3
    </select>
 
</mapper>