using System; namespace SWS.Model { /// /// 版 本 PIT-ADMS V7.0.3 敏捷开发框架 /// Copyright (c) 2013-2018 Hexagon PPM /// 创 建:超级管理员 /// 日 期:2022-06-21 15:32 /// 描 述:接线模块 - panel柜子 /// public class ec_CableSetWire { public ec_CableSetWire() { } public ec_CableSetWire(string setId) { CableSetID = setId; } #region 实体成员 /// /// CableSetID /// /// public string CableSetID { get; set; } = ""; /// /// WireID /// /// public string WireID { get; set; } /// /// Polarity /// /// public string Polarity { get; set; } = ""; /// /// SetLevel /// /// public int SetLevel { get; set; } /// /// Wire_Tag /// /// public string Wire_Tag { get; set; } = ""; /// /// Wire_Color /// /// public string Wire_Color_ID { get; set; } = ""; /// /// 预分配下的端子号 /// public string PreAssignChannelTermNo { 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 string CableID { get; set; } = ""; public string EngineerDataID { get; set; } = ""; /// /// 删除标记 /// public bool DeleteFlg { set; get; } = false; /// /// 电缆左侧 /// public ec_WireTerminal ConnectionOnSide1 { get; set; } /// /// 电缆右侧 /// public ec_WireTerminal ConnectionOnSide2 { get; set; } #endregion } }