| | |
| | | d.phone as driverPhone, |
| | | e.name as company, |
| | | f.money as income, |
| | | b.orderType as orderType, |
| | | DATE_FORMAT(a.insertTime, '%Y-%m-%d %H:%i:%s') as insertTime, |
| | | DATE_FORMAT(b.insertTime, '%Y-%m-%d %H:%i:%s') as paymentTime |
| | | from t_order_taxi a |
| | |
| | | <if test="null != orderCode and '' != orderCode"> |
| | | and a.orderNum like CONCAT('%', #{orderCode}, '%') |
| | | </if> |
| | | <if test="null != orderType"> |
| | | and b.orderType = #{orderType} |
| | | </if> |
| | | <if test="null != userPhone and '' != userPhone"> |
| | | and c.phone like CONCAT('%', #{userPhone}, '%') |
| | | </if> |