根据订单id获取订单详情

This commit is contained in:
牛叉闪闪
2024-07-18 17:25:23 +08:00
parent ddecf1341d
commit 539129781a
3 changed files with 8 additions and 1 deletions

View File

@@ -599,4 +599,8 @@ select * from tb_order_info where trade_day = #{day} and table_id = #{masterId}
AND d.product_sku_id = c.sku_id
where c.order_id=#{orderId}
</select>
<select id="selectById" resultMap="BaseResultMap">
select * from tb_order_info where id=#{id} and status='closed'
</select>
</mapper>