2025-09-04 18:28:02 +08:00

87 lines
2.2 KiB
C#
Raw 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;
using System.Collections.Generic;
namespace SWS.Model
{
/// <summary>
/// 版 本 PIT-ADMS V7.0.3 敏捷开发框架
/// Copyright (c) 2013-2018 Hexagon PPM
/// 创 建:超级管理员
/// 日 期2022-06-21 15:32
/// 描 述:端子排
/// </summary>
public class ec_PanelStrip
{
#region
/// <summary>
/// ID
/// </summary>
/// <returns></returns>
public string StripID { get; set; }
/// <summary>
/// PanelID
/// </summary>
/// <returns></returns>
public string PanelID { get; set; } = "";
/// <summary>
/// 端子排名字
/// </summary>
/// <returns></returns>
public string StripName { get; set; } = "";
/// <summary>
/// IO
/// </summary>
public string IO_TYPE { get; set; } = "";
/// <summary>
/// 端子排顺序
/// </summary>
/// <returns></returns>
public int? Panel_Strip_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>
/// 方便批量创建时从http里获取
/// </summary>
public List<ec_PanelChannel> Channels { set; get; } = new List<ec_PanelChannel>();
public int ChannelsUsed { set; get; } = 0;
public int ChannelsUsedNoSignal { set; get; } = 0;
public int ChannelsSpared { set; get; } = 0;
public string TagNumber { set; get; }
#endregion
}
}