using System; using System.Collections.Generic; using System.Text; namespace WCS.Entity.Protocol { /// /// 系统配置 /// public class WCS_SystemConfig : OBJ { /// /// 设备编号 堆垛机/BCR /// public string Code { get; set; } /// /// 描述 /// public string Describe { get; set; } /// /// 所属设备 /// public string DEVICECODE { get; set; } /// /// 巷道 /// public string TUNNEL { get; set; } /// /// 方向 /// public string Direction { get; set; } } }