<?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.stylefeng.guns.modular.system.dao.TOrderEvaluateMapper">
|
|
<!-- 通用查询映射结果 -->
|
<resultMap id="BaseResultMap" type="com.stylefeng.guns.modular.system.model.TOrderEvaluate">
|
<id column="id" property="id" />
|
<result column="orderId" property="orderId" />
|
<result column="driverId" property="driverId" />
|
<result column="orderType" property="orderType" />
|
<result column="fraction" property="fraction" />
|
<result column="content" property="content" />
|
<result column="insertTime" property="insertTime" />
|
<result column="userId" property="userId" />
|
</resultMap>
|
|
<!-- 通用查询结果列 -->
|
<sql id="Base_Column_List">
|
id, orderId, driverId, orderType, fraction, content, insertTime, userId
|
</sql>
|
|
<!--根据条件查询评价列表-->
|
<select id="getOrderEvaluateList" resultType="map" parameterType="com.baomidou.mybatisplus.plugins.Page">
|
SELECT * FROM (SELECT di.companyId,di.franchiseeId,ui.nickName as userName,ui.phone as userPhone,di.`name` as driverName,di.phone as driverPhone,oe.* FROM t_order_evaluate as oe
|
LEFT JOIN t_user as ui on ui.id = oe.userId
|
LEFT JOIN t_driver as di on di.id = oe.driverId) as o
|
<where>
|
1 = 1
|
<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="userName != null and userName != ''">
|
and o.userName LIKE CONCAT('%',#{userName},'%')
|
</if>
|
<if test="userPhone != null and userPhone != ''">
|
and o.userPhone LIKE CONCAT('%',#{userPhone},'%')
|
</if>
|
<if test="driverName != null and driverName != ''">
|
and o.driverName LIKE CONCAT('%',#{driverName},'%')
|
</if>
|
<if test="driverPhone != null and driverPhone != ''">
|
and o.driverPhone LIKE CONCAT('%',#{driverPhone},'%')
|
</if>
|
<if test="fraction != null and fraction != ''">
|
and o.fraction LIKE CONCAT('%',#{fraction},'%')
|
</if>
|
<if test="orderType != null and orderType != ''">
|
and o.orderType = #{orderType}
|
</if>
|
<if test="roleType != null and roleType != '' and roleType == 2">
|
and o.companyId = #{nowUserId} and (o.franchiseeId = 0 or o.franchiseeId is null)
|
</if>
|
<if test="roleType != null and roleType != '' and roleType == 3">
|
and o.franchiseeId = #{nowUserId}
|
</if>
|
</where>
|
order by o.id desc
|
</select>
|
|
</mapper>
|