仿真状态调整

This commit is contained in:
walker 2024-01-22 18:09:24 +08:00
parent f5d7363c7b
commit bc70ae80a0

View File

@ -572,17 +572,16 @@ message PushedDevicesStatus{
message SimulationStatus {
enum SimulationState {
PAUSE = 0;
START = 1;
ERROR = 2;
DESTROY = 3;
Init = 0;
Running = 1;
Pause = 2;
Error = 3;
Destroy = 4;
}
string simulationId = 1;
SimulationState state = 2;
string description = 3;
// string description = 3;
}
// 仿