同步获取响应数据

This commit is contained in:
Guoqs
2024-08-01 15:13:14 +08:00
parent 0ad35c9300
commit 49ad9419fe
10 changed files with 492 additions and 104 deletions

View File

@@ -151,6 +151,16 @@ public class PileRemoteService {
ykcPushCommandService.pushProofreadTimeCommand(command);
}
public void proofreadTimeTest(String pileSn) {
ProofreadTimeCommand command = ProofreadTimeCommand.builder().pileSn(pileSn).build();
try {
ykcPushCommandService.pushProofreadTimeCommandTest(command);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
/**
* 下发充电桩计费模型
*/
@@ -291,4 +301,5 @@ public class PileRemoteService {
public void reservationCharging(ReservationChargingCommand command) {
ykcPushCommandService.pushReservationChargingCommand(command);
}
}