修改接口文档,申请开票接口

This commit is contained in:
2023-04-14 15:22:27 +08:00
parent 0a63c5044d
commit ed7f55ddad
7 changed files with 270 additions and 172 deletions

View File

@@ -190,4 +190,6 @@ public interface OrderBasicInfoMapper {
List<PersonPileConnectorSumInfoVO> getAccumulativeInfo(QueryPersonPileDTO dto);
List<OrderBasicInfo> getAppointmentOrder(LocalDateTime dateTime);
List<OrderVO> getListByOrderCodes(@Param("orderCodes") List<String> orderCodes);
}

View File

@@ -200,6 +200,8 @@ public interface IOrderBasicInfoService {
*/
void closeStartFailedOrder(String startTime, String endTime);
List<OrderVO> getListByOrderCodes(List<String> orderCodes);
/**
* 个人桩查询充电数据
* @param dto

View File

@@ -1197,6 +1197,11 @@ public class OrderBasicInfoServiceImpl implements IOrderBasicInfoService {
return orderBasicInfoMapper.getListByMemberIdAndOrderStatus(memberId, orderStatusList, dateTime);
}
@Override
public List<OrderVO> getListByOrderCodes(List<String> orderCodes) {
return orderBasicInfoMapper.getListByOrderCodes(orderCodes);
}
/**
* 个人桩查询充电数据
*