update 运营端小程序查询枪口列表页

This commit is contained in:
Lemon
2026-01-05 16:38:22 +08:00
parent c2e5e900b0
commit 96725e53e5
9 changed files with 281 additions and 39 deletions

View File

@@ -3521,4 +3521,17 @@
and `settlement_time` BETWEEN #{dto.startTime,jdbcType=VARCHAR} and #{dto.endTime,jdbcType=VARCHAR}
group by DATE_FORMAT(settlement_time, '%Y-%m-%d');
</select>
<select id="batchQueryChargingConnectorInfo"
resultType="com.jsowell.pile.vo.uniapp.business.BusinessOrderDetailInfoVO">
select
order_code as orderCode,
transaction_code as transactionCode,
pile_connector_code as pileConnectorCode
from order_basic_info where pile_connector_code in
<foreach item="pileConnectorCode" collection="pileConnectorCodes" separator="," open="(" close=")">
#{pileConnectorCode}
</foreach>
and order_status = '1'
</select>
</mapper>