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