feat:回调

This commit is contained in:
苏竹红
2025-06-04 14:29:20 +08:00
parent a101a89c21
commit 747858b9cf
21 changed files with 375 additions and 9 deletions

View File

@@ -393,4 +393,9 @@
<update id="deleteById">
update xfsg_line_pay set deleted = 1 ,update_time = now(),update_user_id = #{userId} where id = #{id}
</update>
</mapper>
<select id="selectByPaymentReceiptCode" resultType="com.cool.store.entity.LinePayDO">
select * from xfsg_line_pay where deleted = 0 and payment_receipt_code = #{paymentReceiptCode} and pay_business_type = 1 order by create_time desc
</select>
</mapper>