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

This commit is contained in:
Lemon
2025-10-24 09:44:11 +08:00
committed by YAS\29473
parent cdf476cfc0
commit 21eba16a1e
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">