From bc70ae80a0ed73ec417884710e02996103841bf9 Mon Sep 17 00:00:00 2001 From: walker Date: Mon, 22 Jan 2024 18:09:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=BF=E7=9C=9F=E7=8A=B6=E6=80=81=E8=B0=83?= =?UTF-8?q?=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/device_state.proto | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/protos/device_state.proto b/protos/device_state.proto index aa2cecb..aad6228 100644 --- a/protos/device_state.proto +++ b/protos/device_state.proto @@ -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; } // 仿真在用的第三方接口状态列表