创建商品

This commit is contained in:
2025-09-02 01:07:34 +08:00
parent 7066066d79
commit 89aa94c8a4
4 changed files with 9 additions and 3 deletions

View File

@ -155,6 +155,12 @@
WHERE id = #{id}
</update>
<update id="updateItemIdByOutItemId" parameterType="com.sczx.pay.alipay.po.RentRuleItem">
UPDATE zc_rent_rule_item
set ali_item_id = #{aliItemId}
WHERE out_item_id = #{aliItemId}
</update>
<!-- 根据ID删除 -->
<delete id="deleteById" parameterType="Long">
DELETE FROM zc_rent_rule_item WHERE id = #{id}