From d2d5106682f967277f689fb91c5e4af4585d684e Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Thu, 17 Aug 2023 18:13:47 +0800
Subject: [PATCH] 后台修改
---
src/main/resources/mapper/dapp/MallGoodsMapper.xml | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/src/main/resources/mapper/dapp/MallGoodsMapper.xml b/src/main/resources/mapper/dapp/MallGoodsMapper.xml
index aed5b19..6e1906c 100644
--- a/src/main/resources/mapper/dapp/MallGoodsMapper.xml
+++ b/src/main/resources/mapper/dapp/MallGoodsMapper.xml
@@ -57,8 +57,8 @@
<if test="record.goodsName != null and record.goodsName != ''">
and c.goods_name like CONCAT('%', CONCAT(#{record.goodsName}, '%'))
</if>
- <if test="record.payResult != null and record.payResult != ''">
- and a.pay_result = #{record.payResult}
+ <if test="record.deliverType != null and record.deliverType != ''">
+ and a.deliver_type = #{record.deliverType}
</if>
<if test="record.orderType != null">
and a.order_type = #{record.orderType}
@@ -66,6 +66,9 @@
<if test="record.status != null and record.status != ''">
and a.status = #{record.status}
</if>
+ <if test="record.deliverState != null and record.deliverState != ''">
+ and a.deliver_state = #{record.deliverState}
+ </if>
<if test="record.orderNo != null and record.orderNo != ''">
and a.order_no like CONCAT('%', CONCAT(#{record.orderNo}, '%'))
</if>
--
Gitblit v1.9.1