订单查询接口代码提交
This commit is contained in:
parent
35defa1ab7
commit
950d1bc3e9
|
|
@ -42,7 +42,7 @@ public class OrderController extends BaseController {
|
|||
}
|
||||
|
||||
/**
|
||||
* 提交预约车到订单
|
||||
* 获取订单详情
|
||||
*/
|
||||
@ApiOperation(value = "获取订单详情")
|
||||
@GetMapping("/getOrderDetails")
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="deviceName != null and deviceName != ''">
|
||||
AND mdi.device_name like concat('%',#{deviceName},'%')
|
||||
</if>
|
||||
<if test="orderStatus != null">
|
||||
<if test="orderStatus != null and orderStatus != ''">
|
||||
AND moi.order_status = #{orderStatus}
|
||||
</if>
|
||||
<if test="startTime != null and startTime != '' and endTime != null and endTime != '' ">
|
||||
|
|
|
|||
Loading…
Reference in New Issue