namespace WIDESEAWCS_Tasks.Workflow.Abstractions { /// /// 机器人简单命令处理器(如运行状态、模式切换、全流程完成命令)。 /// public interface IRobotSimpleCommandHandler { Task HandleAsync(string message, RobotSocketState state); } }