using SWS.CAD.Models;
using System;
using System.Collections.Generic;
namespace SWS.CAD.Models
{
///
/// 版 本 PIT-ADMS V7.0.3 敏捷开发框架
/// Copyright (c) 2013-2018 Hexagon PPM
/// 创 建:超级管理员
/// 日 期:2022-06-21 15:32
/// 描 述:接线模块 - panel柜子
///
public class ec_Cable
{
#region 实体成员
///
/// ID
///
///
public string CableID { get; set; }
///
/// Cable_Format
///
///
public string Cable_Format { get; set; } = "";
///
/// EngineerDataID。对应
///
///
public string EngineerDataID { get; set; } = "";
///
/// 是否为母线类型。如果是,里面走的信号也只能是通讯信号
/// conventional或homerun
///
///
public string CableClass { get; set; } = "";
///
/// 即里面走的信号的信号类型?
/// RS485 RS422 TCP/IP MQTT(如果是通讯母线,通讯类型是什么。)
/// Digital 4-20mA Pulse Pt100(如果是非母线,IO类型是什么。)
///
public string PreAssignIOType { get; set; } = "";
///
/// 电缆预分配时,必须指定它应该在哪个IO柜子
///
public string PanelID { get; set; }
///
/// 创建人
///
///
public string CreateUserID { get; set; }
///
/// 创建时间
///
///
public DateTime? CreateTime { get; set; }
///
/// 更新人
///
///
public string UpdateUserID { get; set; }
///
/// 更新时间
///
///
public DateTime? UpdateTime { get; set; }
#endregion
#region 扩展字段
///
///
///
public List Sets { set; get; }
///
/// 平行电缆数据
///
public List parallelCables { set; get; }
///
/// 关联的通讯点
///
public List WireGroupIds { set; get; }
///
/// 关联的通讯点
///
public IEnumerable WireGroups { set; get; }
///
/// 对应到
///
public string TagNumber { set; get; }
///
/// From连接处的工程位号信息
///
public ec_Panel FromPanel { set; get; }
///
/// From连接处的工程位号信息(
///
public ec_Panel ToPanel { set; get; }
#endregion
}
}