新增 查询用户挂起状态占桩订单

This commit is contained in:
Lemon
2023-08-14 17:09:06 +08:00
parent fdb304c264
commit a8eebfe3b5
4 changed files with 29 additions and 2 deletions

View File

@@ -805,4 +805,15 @@
and pile_sn = #{pileSn,jdbcType=VARCHAR}
and connector_code = #{connectorCode,jdbcType=VARCHAR}
</select>
<select id="queryUnPayOrderByMemberId" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from
order_pile_occupy
where
del_flag = '0'
and status = '2'
and member_id = #{memberId,jdbcType=VARCHAR}
</select>
</mapper>