fix(order):修复订单备注更新逻辑

- 移除了订单备注更新时的空字符串检查
- 允许将订单备注更新为空值
-保持了退款原因的非空检查逻辑不变
This commit is contained in:
2025-10-30 09:24:28 +08:00
parent 73825cd1d6
commit f0ad0f58a9

View File

@@ -171,7 +171,7 @@
<if test="payPrice!= null ">
pay_price = #{payPrice},
</if>
<if test="remark!= null and remark!= ''">
<if test="remark!= null">
remark = #{remark},
</if>
<if test="refundReason!= null and refundReason!= ''">