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

@@ -652,4 +652,18 @@ public interface OrderBasicInfoService{
* @return
*/
List<IndexPlatformProfitVO> getInsuranceAmount(IndexQueryDTO dto);
/**
* 批量查询充电枪信息
* @param chargingConnectorCodeList
* @return
*/
List<BusinessOrderDetailInfoVO> batchQueryChargingConnectorInfo(List<String> chargingConnectorCodeList);
/**
* 批量查询充电枪实时数据
* @param transactionCodeList
* @return
*/
List<RealTimeMonitorData> getRealTimeMonitorDataList(List<String> transactionCodeList);
}