新增 宁夏交投 相关service方法

This commit is contained in:
Lemon
2023-11-13 16:13:02 +08:00
parent f62bea40a2
commit 6432901b83
12 changed files with 384 additions and 1 deletions

View File

@@ -1216,4 +1216,18 @@
and t1.settle_amount > 0.00
and t1.pay_mode = '4'
</select>
<select id="getOrderInfoByLicensePlateNumber" resultType="com.jsowell.pile.vo.uniapp.OrderVO">
SELECT
t1.charge_start_time AS startTime,
t1.station_id AS stationId,
t2.station_name AS stationName,
t1.order_amount AS orderAmount
FROM
order_basic_info t1
JOIN pile_station_info t2 ON t1.station_id = t2.id
AND t1.del_flag = '0'
where
t1.plate_number = #{licensePlateNumber,jdbcType=VARCHAR}
</select>
</mapper>