新增 批量推送第三方平台订单接口

This commit is contained in:
Lemon
2025-07-04 13:55:17 +08:00
parent bc4c59360e
commit 9b966b43ae
7 changed files with 184 additions and 0 deletions

View File

@@ -405,4 +405,13 @@ public interface OrderBasicInfoMapper {
List<OrderVO> selectThirdPartyOrderList(@Param("dto") QueryStartChargeDTO dto);
LocalDateTime queryOrderCreateTimeByStationId(String id);
/**
* 根据参数查询订单基本信息
* @param stationIds
* @param startTime
* @param endTime
* @return
*/
List<OrderBasicInfo> getOrderBasicInfoByTimeInterval(@Param("stationIds") List<String> stationIds, @Param("startTime") String startTime, @Param("endTime") String endTime);
}