| | |
| | | import com.ruoyi.order.vo.ChargingOrderListInfoVO; |
| | | import com.ruoyi.order.vo.EndOfChargePageInfo; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDate; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | List<TChargingOrder> getChargingOrder(TChargingOrderVo order); |
| | | |
| | | Long countCar(List<String> brands); |
| | | |
| | | |
| | | /** |
| | | * 添加三方平台充电订单数据 |
| | | * @param chargingGunId |
| | | */ |
| | | R addTripartitePlatformOrder(Integer chargingGunId, String operatorId, Integer rechargePaymentType, BigDecimal paymentAmount, String startChargeSeq); |
| | | |
| | | |
| | | /** |
| | | * 三方平台停止充电操作 |
| | | * @param startChargeSeq |
| | | * @return |
| | | */ |
| | | R tripartitePlatformStopCharge(@RequestParam("startChargeSeq") String startChargeSeq); |
| | | } |