using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model
{
///
/// 能效管路分析上下文项
///
public class EtaPipeLineAnalyContextItem
{
///
/// 管路标识
///
public long ID { get; set; }
///
/// 管路名称
///
public string Name { get; set; }
///
/// 管路类别(机泵 、管路、阀门等等)
///
public string Catalog { get; set; }
///
/// 头部连接管路标识
///
public long HeadID { get; set; }
///
/// 尾部连接管路标识
///
public long TailID { get; set; }
///
/// 管路方向
///
public Model.PipeLine.eDirection Direction { get; set; }
///
/// 序列号(能效分析项需要按照序列号进行排序)
///
public int? SerialNO { get; set; }
///
/// 标志列表
///
public List Flags { get; set; }
///
/// 标签名称
///
public string TagName { get; set; }
///
/// 使用状态
///
public eUseStatus UseStatus { get; set; }
///
/// 设备上下文项
///
public EtaProductAnalyContextBaseItem ProductContextItem { get; set; }
///
/// 监测点上下文项集合
///
public List MonitorPointContextItems { get; set; }
}
}