2025-08-15 16:34:31 +08:00

89 lines
2.5 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
namespace SWS.CAD.Models
{
/// <summary>
/// 版 本 PIT-ADMS V7.0.3 敏捷开发框架
/// Copyright (c) 2013-2018 Hexagon PPM
/// 创 建:超级管理员
/// 日 期2022-06-21 15:32
/// 描 述:接线模块 - 端子
/// </summary>
public class ec_PanelStripTerm
{
#region
/// <summary>
/// 端子排的ID<see cref="ec_PanelStripEntity.StripID"/>
/// </summary>
/// <returns></returns>
public string StripID { get; set; } = "";
/// <summary>
/// PanelID
/// </summary>
/// <returns></returns>
//public string PanelID { get; set; } = "";
/// <summary>
/// ChannelID。如果没通道就是-1。
/// </summary>
/// <returns></returns>
public string ChannelID { get; set; } = "";
/// <summary>
/// TermID
/// </summary>
/// <returns></returns>
public string TermID { get; set; }
/// <summary>
/// 端子号
/// </summary>
/// <returns></returns>
public string Term_No { get; set; } = "";
/// <summary>
/// 端子顺序
/// </summary>
/// <returns></returns>
public int Term_Seq { get; set; }
/// <summary>
/// 创建人
/// </summary>
/// <returns></returns>
public string CreateUserID { get; set; }
/// <summary>
/// 创建时间
/// </summary>
/// <returns></returns>
public DateTime? CreateTime { get; set; }
/// <summary>
/// 更新人
/// </summary>
/// <returns></returns>
public string UpdateUserID { get; set; }
/// <summary>
/// 更新时间
/// </summary>
/// <returns></returns>
public DateTime? UpdateTime { get; set; }
#endregion
#region
/// <summary>
/// 相当于端子左边。因为最开始是为IO模块的端子设计的。
/// 正常对应<see cref="ec_WireTerminalEntity.Strip_Side"/>=0
/// </summary>
public ec_WireTerminal Connection { get; set; }
/// <summary>
/// 相当于端子右侧。
/// 正常对应<see cref="ec_WireTerminalEntity.Strip_Side"/>=1
/// </summary>
public ec_WireTerminal Connection2 { get; set; }
public bool NeedRemove { set; get; } = false;
#endregion
}
}