using iWareSda.Model;
using System.Collections.Generic;
using System.ComponentModel;
namespace iWareSda
{
///
/// Conveyer展示实体类
///
public class ConveyerView : ConveyerDB2Obj
{
///
/// 设备名称
///
[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; }
///
/// Conveyer报警DB集合
///
[Description("Conveyer报警DB集合")]
public List R_Conveyer_WarningDBList { get; set; }
}
}