bugfix 查询订单支付记录没有筛选已删除的记录

This commit is contained in:
Lemon
2025-10-24 09:44:11 +08:00
parent 2c7b56b1d7
commit 4644103837
2 changed files with 55 additions and 66 deletions

View File

@@ -428,7 +428,8 @@
select
<include refid="Base_Column_List" />
from order_pay_record
where order_code = #{orderCode,jdbcType=VARCHAR}
where del_flag = '0'
and order_code = #{orderCode,jdbcType=VARCHAR}
</select>
<select id="selectOrderPayRecordList" resultType="com.jsowell.pile.vo.OrderPayRecordVO">