新增 根据分账id撤销已分帐订单

This commit is contained in:
Lemon
2025-04-28 09:41:47 +08:00
parent 3489b7899f
commit 297c251274
6 changed files with 90 additions and 0 deletions

View File

@@ -882,4 +882,11 @@
</if>
</select>
<select id="selectInfoByPaymentConfirmId" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from order_split_record
where del_flag = '0'
and payment_confirm_id = #{paymentConfirmId,jdbcType=VARCHAR}
</select>
</mapper>