This commit is contained in:
Lemon
2023-04-25 15:00:08 +08:00
parent ea34f51849
commit c5b056b5a4

View File

@@ -365,7 +365,7 @@ public class LianLianServiceImpl implements LianLianService {
*/
public void query_start_charge(QueryStartChargeDTO dto) {
// 通过传过来的订单号和枪口号生成订单
String startChargeSeq = dto.getStartChargeSeq();
String orderCode = dto.getStartChargeSeq();
String pileConnectorCode = dto.getConnectorID();
@@ -448,7 +448,7 @@ public class LianLianServiceImpl implements LianLianService {
.build();
ykcPushCommandService.pushStopChargingCommand(command);
vo.setStartChargeSeq(orderCode);
vo.setStartChargeSeqStat(3); // 停止中
vo.setStartChargeSeqStat(3); // 3-停止中
}
return vo;
}