mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 11:05:18 +08:00
update 高德
This commit is contained in:
@@ -373,4 +373,27 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
from pile_basic_info
|
||||
where station_id = #{stationId,jdbcType=VARCHAR}
|
||||
</select>
|
||||
|
||||
<select id="queryPileDetailList" resultType="com.jsowell.pile.vo.base.PileInfoVO">
|
||||
SELECT
|
||||
t1.id as pileId,
|
||||
t1.sn AS pileSn,
|
||||
t1.merchant_id as merchantId,
|
||||
t1.station_id as stationId,
|
||||
t2.model_name as modelName,
|
||||
t2.rated_power as ratedPower,
|
||||
t2.rated_current as ratedCurrent,
|
||||
t2.rated_voltage as ratedVoltage,
|
||||
t2.speed_type as speedType,
|
||||
t3.pile_connector_code as pileConnectorCode
|
||||
FROM
|
||||
pile_basic_info t1
|
||||
LEFT JOIN pile_model_info t2 on t1.model_id = t2.id
|
||||
LEFT JOIN pile_connector_info t3 on t1.sn = t3.pile_sn
|
||||
WHERE
|
||||
t1.station_id in
|
||||
<foreach collection="stationIdList" item="item" open="(" separator="," close=")">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
</select>
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user