add 新增运营端小程序查询订单详情接口

This commit is contained in:
Lemon
2026-01-21 15:32:57 +08:00
parent 26062450c0
commit f7a6a25434
8 changed files with 136 additions and 9 deletions

View File

@@ -3252,12 +3252,15 @@
t1.transaction_code AS transactionCode,
t1.order_status AS orderStatus,
t1.station_id AS stationId,
t1.third_party_type as thirdPartyType,
t5.station_name as stationName,
t1.pile_sn AS pileSn,
t1.member_id as memberId,
t1.connector_code AS connectorCode,
t1.pile_connector_code AS pileConnectorCode,
t1.pay_mode AS payMode,
t1.pay_amount AS payAmount,
t1.logic_card as cardNumber,
t1.pay_time AS payTime,
t1.order_amount AS orderAmount,
t1.plate_number AS licensePlateNumber,
@@ -3269,7 +3272,8 @@
t1.charge_end_time AS endTime,
t1.start_soc AS startSoc,
t1.end_soc AS endSoc,
t1.reason AS stopReason,
t1.reason AS reason,
t1.vin_code as vinCode,
t2.total_used_electricity AS totalPower,
t2.total_electricity_amount AS totalElectricityAmount,
t2.total_service_amount AS totalServiceAmount
@@ -3280,6 +3284,7 @@
pile_merchant_info t3 on t1.merchant_id = t3.id
join
member_basic_info t4 on t1.member_id = t4.member_id
join pile_station_info t5 on t1.station_id = t5.id
WHERE t1.del_flag = '0'
AND t1.order_code = #{orderCode,jdbcType=VARCHAR}
</select>