update 占桩订单逻辑

This commit is contained in:
2023-08-18 15:52:52 +08:00
parent f7fc5ea8e2
commit 29a60ec560
5 changed files with 30 additions and 5 deletions

View File

@@ -868,4 +868,16 @@
create_time DESC
limit 1
</select>
<select id="getDraftOccupyOrder" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from
order_pile_occupy
where del_flag = '0'
and status = '9'
and pile_sn = #{pileSn,jdbcType=VARCHAR}
and connector_code = #{connectorCode,jdbcType=VARCHAR}
order by create_time DESC
</select>
</mapper>