update 打印日志

This commit is contained in:
2024-02-28 15:22:38 +08:00
parent 32a5daeeac
commit 50777ea07a
4 changed files with 24 additions and 17 deletions

View File

@@ -2467,9 +2467,9 @@
t3.total_used_electricity as chargingDegree,
t4.open_id as openId
FROM order_basic_info t1
JOIN pile_station_info t2 ON t1.station_id = t2.id
join order_detail t3 on t1.order_code = t3.order_code
join member_basic_info t4 on t1.member_id = t4.member_id
JOIN pile_station_info t2 ON t1.station_id = t2.id
join order_detail t3 on t1.order_code = t3.order_code
join member_basic_info t4 on t1.member_id = t4.member_id
where t1.del_flag = '0'
and t1.order_code = #{orderCode,jdbcType=VARCHAR}
</select>