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) 是否高柔 线芯数 线材型号规格 插头型号 前端子型号 后端子型号
|
|
|
|
|
*/
|
2025-05-06 09:56:10 +08:00
|
|
|
|
|
|
|
|
|
public int SeqNo { get; set; }
|
|
|
|
|
|
2025-04-24 14:22:46 +08:00
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
public string UniqueKey { get; set; }
|
|
|
|
|
public string ProjectName { get; set; }
|
|
|
|
|
public string UserId { get; set; }
|
2025-05-06 09:56:10 +08:00
|
|
|
|
public string WireKey { get; set; }
|
2025-04-24 14:22:46 +08:00
|
|
|
|
public string ApplicationScenario { get; set; }
|
|
|
|
|
public string WireDiameterSpecification { get; set; }
|
|
|
|
|
public string IsHighFlexibilityStr { get; set; }
|
|
|
|
|
public string WireCoreCount { get; set; }
|
2025-05-06 09:56:10 +08:00
|
|
|
|
|
2025-04-24 14:22:46 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 线材型号规格
|
2025-05-06 09:56:10 +08:00
|
|
|
|
/// </summary>
|
2025-04-24 14:22:46 +08:00
|
|
|
|
public string WireModelSpecification { get; set; }
|
2025-05-06 09:56:10 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 线材颜色名
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string WireColorName { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 线材长度
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(IsNullable = true)]
|
|
|
|
|
public string WireLength { get; set; }
|
|
|
|
|
|
2025-04-24 14:22:46 +08:00
|
|
|
|
/// <summary>
|
2025-04-29 14:32:35 +08:00
|
|
|
|
/// 前连接物型号
|
|
|
|
|
/// </summary>
|
2025-04-24 14:22:46 +08:00
|
|
|
|
public string FrontConnectorModel { get; set; }
|
2025-05-06 09:56:10 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 前连接物料号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string FrontConnectorMCode { 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; }
|
2025-05-06 09:56:10 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 后连接物料号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string RearConnectorMCode { get; set; }
|
2025-04-29 14:32:35 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 后连接物数量
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int RearConnectorQuantity { get; set; }
|
|
|
|
|
|
2025-05-06 09:56:10 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 号码管型号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(IsNullable = true)]
|
|
|
|
|
public string NumberTubeModel { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 号码管物料编码
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(IsNullable = true)]
|
|
|
|
|
public string NumberTubeMCode { get; set; }
|
2025-04-29 14:32:35 +08:00
|
|
|
|
|
2025-05-06 09:56:10 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 号码管长度
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(IsNullable = true)]
|
|
|
|
|
public int NumberTubeLength { get; set; }
|
|
|
|
|
[SugarColumn(IsNullable = true)]
|
|
|
|
|
public bool FrontConnectorIsPin { get; set; }
|
|
|
|
|
[SugarColumn(IsNullable = true)]
|
|
|
|
|
public bool RearConnectorIsPin { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 透明热缩管型号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(IsNullable = true)]
|
|
|
|
|
public string TransparentHeatShrinkTubeModel { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 透明热缩管标示
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(IsNullable = true)]
|
|
|
|
|
public string TransparentHeatShrinkTubeDesc { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 透明热缩管物料编码
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(IsNullable = true)]
|
|
|
|
|
public string TransparentHeatShrinkTubeMCode { get; set; }
|
2025-04-24 14:22:46 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2025-05-06 09:56:10 +08:00
|
|
|
|
/// 黑色热缩管型号(插头)
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(IsNullable = true)]
|
|
|
|
|
public string BlackHeatShrinkTubeModel { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 黑色热缩管物料编码(插头)
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(IsNullable = true)]
|
|
|
|
|
public string BlackHeatShrinkTubeMCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 黑色热缩管型号(剥线后)
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(IsNullable = true)]
|
|
|
|
|
public string BlackHeatShrinkTubeModelAfterStripping { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 黑色热缩管物料编码(剥线后)
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(IsNullable = true)]
|
|
|
|
|
public string BlackHeatShrinkTubeMCodeAfterStripping { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 热缩管标识
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(IsNullable = true)]
|
|
|
|
|
public string HeatShrinkTubeDesc { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 前段子剥线长度
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(IsNullable = true)]
|
|
|
|
|
public int FrontStrippingLength { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 后段子剥线长度
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(IsNullable = true)]
|
|
|
|
|
public int RearStrippingLength { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool Layouted { get; set; }
|
2025-04-24 14:22:46 +08:00
|
|
|
|
}
|
|
|
|
|
}
|