update 查询枪口列表接口、add 查询各状态枪口汇总数据接口

This commit is contained in:
Lemon
2026-01-07 10:14:59 +08:00
parent 96725e53e5
commit 22865eae82
12 changed files with 157 additions and 87 deletions

View File

@@ -3523,7 +3523,7 @@
</select>
<select id="batchQueryChargingConnectorInfo"
resultType="com.jsowell.pile.vo.uniapp.business.BusinessOrderDetailInfoVO">
resultType="com.jsowell.pile.vo.web.PileConnectorInfoVO">
select
order_code as orderCode,
transaction_code as transactionCode,

View File

@@ -740,4 +740,15 @@
ORDER BY
chargeNum DESC;
</select>
<select id="getStationIdsByMerchantIds" resultType="java.lang.String">
select
id
from
pile_station_info
where merchant_id in
<foreach collection="merchantIds" item="merchantId" open="(" separator="," close=")">
#{merchantId,jdbcType=VARCHAR}
</foreach>
</select>
</mapper>