2025-04-24 14:22:46 +08:00
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace Sinvo.EplanHpD.Plugin.Service.Model
|
|
|
|
|
{
|
|
|
|
|
[SugarTable("T_MCWIRE_LEC")]
|
|
|
|
|
public class MultiCoreWireLecDBModel
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* 应用场景 类型 线径规格(mm2) 是否高柔 线芯数 线材型号规格 插头型号 前端子型号 后端子型号
|
|
|
|
|
*/
|
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
public string UniqueKey { get; set; }
|
|
|
|
|
public string ProjectName { get; set; }
|
|
|
|
|
public string UserId { get; set; }
|
|
|
|
|
|
|
|
|
|
public int SeqNo { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 应用场景
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ApplicationScenario { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 线径规格(mm2)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string WireDiameterSpecification { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否高柔
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string IsHighFlexibilityStr { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 线芯数
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string WireCoreCount { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 线材型号规格
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string WireModelSpecification { get; set; }
|
|
|
|
|
/// <summary>
|
2025-04-29 14:32:35 +08:00
|
|
|
|
/// 前连接物型号
|
|
|
|
|
/// </summary>
|
2025-04-24 14:22:46 +08:00
|
|
|
|
public string FrontConnectorModel { get; set; }
|
2025-04-29 14:32:35 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 前连接物数量
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int FrontConnectorQuantity { get; set; }
|
|
|
|
|
|
2025-04-24 14:22:46 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2025-04-29 14:32:35 +08:00
|
|
|
|
/// 后连接物型号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string RearConnectorModel { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 后连接物数量
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int RearConnectorQuantity { get; set; }
|
|
|
|
|
|
|
|
|
|
|
2025-04-24 14:22:46 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否已布线
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool Layouted { get; set; } = false;
|
|
|
|
|
}
|
|
|
|
|
}
|