From 5cf36c89a641c654c9a229aea11585386a8f2006 Mon Sep 17 00:00:00 2001 From: Cui Zhi Feng <7426394+wuxixiaocui@user.noreply.gitee.com> Date: 星期五, 13 九月 2024 10:17:08 +0800 Subject: [PATCH] 查询我的集货站列表 参数 --- src/main/resources/mapper/payment/DeliveryOrderMapper.xml | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/main/resources/mapper/payment/DeliveryOrderMapper.xml b/src/main/resources/mapper/payment/DeliveryOrderMapper.xml index f6d68af..7d64fcf 100644 --- a/src/main/resources/mapper/payment/DeliveryOrderMapper.xml +++ b/src/main/resources/mapper/payment/DeliveryOrderMapper.xml @@ -218,10 +218,14 @@ <if test="endDate != null"> AND o.create_time <= #{endDate} </if> - GROUP BY - s.station_id, - st.`name`; + <if test="statusList != null and statusList.size > 0"> + AND o.status in + <foreach collection="statusList" item="status" open="(" separator="," close=")"> + #{status} + </foreach> + </if> + GROUP BY s.station_id, st.`name` </select> <update id="setDeliveryOrderPending"> -- Gitblit v1.9.3