using System.Collections.Generic;
using System.ComponentModel;
namespace iWareSda
{
///
/// 输送线展示实体类
///
public class HuscoLineView : HuscoLineDB2Obj
{
///
/// 是否已联通
///
[Description("是否已联通")]
public bool IsConnected { get; set; }
///
/// 设备名称
///
[Description("设备名称")]
public string DeviceName { get; set; }
///
/// 设备编号
///
[Description("设备编号")]
public int DeviceId { get; set; }
/////
///// 是否有心跳
/////
[Description("是否有心跳")]
public bool IsHeartBeat { get; set; }
///
/// 报警DB集合
///
public List R_WarningDBList { get; set; }
}
}