wanshenmean
2026-03-13 0dbc8273bdfbcabcc4b770546245f6b17d787de9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System.Collections.Generic;
 
namespace WIDESEAWCS_Tasks.StackerCraneJob
{
    /// <summary>
    /// 堆垛机命令配置
    /// </summary>
    public class StackerCraneCommandConfig
    {
        /// <summary>
        /// Roadway 关键字到命令类型的映射
        /// </summary>
        public Dictionary<string, string> RoadwayCommandMapping { get; set; } = new()
        {
            { "HC", "Formation" },
            { "GW", "Standard" },
            { "CW", "Standard" }
        };
 
        /// <summary>
        /// 默认命令类型
        /// </summary>
        public string DefaultCommandType { get; set; } = "Standard";
    }
}