using System.Collections.Generic; namespace WIDESEAWCS_Tasks.StackerCraneJob { /// /// 堆垛机命令配置 /// public class StackerCraneCommandConfig { /// /// Roadway 关键字到命令类型的映射 /// public Dictionary RoadwayCommandMapping { get; set; } = new() { { "HC", "Formation" }, { "GW", "Standard" }, { "CW", "Standard" } }; /// /// 默认命令类型 /// public string DefaultCommandType { get; set; } = "Standard"; } }