using iWareSda.Model; using System.Collections.Generic; using System.ComponentModel; namespace iWareSda { /// /// Station展示实体类 /// public class StationView : StationDB2Obj { /// /// 设备名称 /// [Description("设备名称")] public string DeviceName { get; set; } /// /// 设备编号 /// [Description("设备编号")] public int DeviceId { get; set; } /// /// 是否已经连接 /// [Description("是否已经连接")] public bool IsConnected { get; set; } /// /// 输送线报警DB集合 /// [Description("报警DB集合")] public List R_Line_WarningDBList { get; set; } /// /// Station报警DB集合 /// [Description("Station报警DB集合")] public List R_Station_WarningDBList { get; set; } } }