using System; namespace SWS.CAD.Models { /// /// 版 本 PIT-ADMS V7.0.3 敏捷开发框架 /// Copyright (c) 2013-2018 Hexagon PPM /// 创 建:超级管理员 /// 日 期:2022-06-21 15:32 /// 描 述:Connection,terminal和wire之间的连接关系。 /// public class ec_WireTerminal { public ec_WireTerminal() { NeedRemove = false; } #region 实体成员 /// /// ID /// /// public string ID { get; set; } /// /// WireID,对应 /// /// public string WireID { get; set; } = ""; /// /// ID /// /// //public string PanelID { get; set; } = ""; /// /// CableSetID /// /// //public string StripID { get; set; } = ""; /// /// TermID,对应 /// /// public string TermID { get; set; } = ""; /// /// 暂时没用到。相当于信号流里的前后顺序。可以用100来说明这个是接到了DCS卡件上 /// /// public int Group_Seq { get; set; } /// /// 电缆哪一端被连接(0左,1右)。暂时没用到 /// /// public int Cable_Side { get; set; } /// /// 端子排哪一侧被连接(0左,1右)。暂时没用到 /// /// public int Strip_Side { get; set; } /// /// 走的信号是什么。暂时没用到 /// /// public string Wire_Group_ID { get; set; } = ""; /// /// 创建人 /// /// public string CreateUserID { get; set; } /// /// 创建时间 /// /// public DateTime? CreateTime { get; set; } /// /// 更新人 /// /// public string UpdateUserID { get; set; } /// /// 更新时间 /// /// public DateTime? UpdateTime { get; set; } #endregion #region 扩展字段 /// /// 依靠这个来决定Delete或者Save /// public bool NeedRemove { get; set; } public string PanelName { get; set; } public string StripName { get; set; } public string Term_No { get; set; } public int Term_Seq { get; set; } public string CableName { get; set; } public string CableSetName { get; set; } /// /// CableSetID(取消了,不如cableset表里也有一个,增加难度),但是saveconnection时似乎还要用到 /// /// public string CableSetID { get; set; } = ""; public int CableSetSeq { get; set; } public string Wire_Tag { get; set; } public string Polarity { get; set; } public int SetLevel { get; set; } #endregion } }