新增 宁夏交投 相关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>

View File

@@ -536,4 +536,16 @@
and public_flag = '1'
and amap_flag = '1'
</select>
<select id="NXJTQueryStationsInfo" resultMap="PileStationInfoResult">
SELECT
id AS stationId,
station_name AS stationName,
address,
station_lng AS stationLng,
station_lat AS stationLat,
support_order AS supportOrder
FROM
pile_station_info
</select>
</mapper>