using iWareSda.Model; using System.Collections.Generic; using System.ComponentModel; namespace iWareSda { /// /// 堆垛机展示实体类 /// public class SrmView : SrmDB2Obj { /// /// 堆垛机名称 /// [Description("堆垛机名称")] public string DeviceName { get; set; } /// /// 设备编号 /// [Description("设备编号")] public int DeviceId { get; set; } /// /// 是否已经连接 /// [Description("是否已经连接")] public bool IsConnected { get; set; } /// /// 设备模式 /// [Description("设备模式")] public string ModeName { get; set; } /// /// 设备状态 /// [Description("设备状态")] public string StateName { get; set; } /// /// 起始位 /// [Description("起始位")] public string SrmSourcePlace { get; set; } /// /// 目标位 /// [Description("目标位")] public string SrmToPlace { get; set; } /// /// 报警DB集合 /// [Description("报警DB集合")] public List R_WarningDBList { get; set; } } }