update 使占桩订单免费/修改订单金额

This commit is contained in:
Lemon
2023-09-08 15:51:16 +08:00
parent 43364537d3
commit a89d7e7ec0
6 changed files with 99 additions and 6 deletions

View File

@@ -926,4 +926,12 @@
<if test="pileConnectorCode != null and pileConnectorCode != ''"> and pile_connector_code = #{pileConnectorCode}</if>
</where>
</select>
<update id="makeOrderFree">
update
order_pile_occupy
set
status = '1', pay_status = '2'
where occupy_code = #{occupyCode,jdbcType=VARCHAR}
</update>
</mapper>