|
|
|
@ -25,10 +25,26 @@
|
|
|
|
|
</update>
|
|
|
|
|
|
|
|
|
|
<select id="selectStatusByOrderId" resultType="int">
|
|
|
|
|
select status from io_order where orderId = #{orderId}
|
|
|
|
|
select status
|
|
|
|
|
from io_order
|
|
|
|
|
where orderId = #{orderId}
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<update id="updateOrderStatus">
|
|
|
|
|
update io_order set status = #{orderStatus} where orderId = #{orderId}
|
|
|
|
|
update io_order
|
|
|
|
|
set status = #{orderStatus}
|
|
|
|
|
where orderId = #{orderId}
|
|
|
|
|
</update>
|
|
|
|
|
|
|
|
|
|
<select id="selectOrderIdInSupplementNo" resultType="java.lang.String">
|
|
|
|
|
select orderId
|
|
|
|
|
from io_order
|
|
|
|
|
where supplementNo = #{orderId}
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<update id="updateSupplementNo">
|
|
|
|
|
update io_order
|
|
|
|
|
set supplementNo = null
|
|
|
|
|
where orderId = #{orderId}
|
|
|
|
|
</update>
|
|
|
|
|
</mapper>
|