148 lines
4.6 KiB
C#
148 lines
4.6 KiB
C#
using SqlSugar;
|
||
using System.ComponentModel;
|
||
|
||
namespace Sinvo.EplanHpD.Plugin.Service.Model
|
||
{
|
||
[SugarTable("T_MCWIRE_LEC")]
|
||
public class MultiCoreWireLecDBModel
|
||
{
|
||
/*
|
||
* 应用场景 类型 线径规格(mm2) 是否高柔 线芯数 线材型号规格 插头型号 前端子型号 后端子型号
|
||
*/
|
||
|
||
public int SeqNo { get; set; }
|
||
|
||
public string Id { get; set; }
|
||
public string UniqueKey { get; set; }
|
||
public string ProjectName { get; set; }
|
||
public string UserId { get; set; }
|
||
public string WireKey { get; set; }
|
||
public string ApplicationScenario { get; set; }
|
||
public string WireDiameterSpecification { get; set; }
|
||
public string IsHighFlexibilityStr { get; set; }
|
||
public string WireCoreCount { get; set; }
|
||
|
||
/// <summary>
|
||
/// 线材型号规格
|
||
/// </summary>
|
||
public string WireModelSpecification { get; set; }
|
||
/// <summary>
|
||
/// 线材颜色名
|
||
/// </summary>
|
||
public string WireColorName { get; set; }
|
||
/// <summary>
|
||
/// 线材长度
|
||
/// </summary>
|
||
[SugarColumn(IsNullable = true)]
|
||
public string WireLength { get; set; }
|
||
|
||
/// <summary>
|
||
/// 前连接物型号
|
||
/// </summary>
|
||
public string FrontConnectorModel { get; set; }
|
||
|
||
/// <summary>
|
||
/// 前连接物料号
|
||
/// </summary>
|
||
public string FrontConnectorMCode { get; set; }
|
||
/// <summary>
|
||
/// 前连接物数量
|
||
/// </summary>
|
||
public int FrontConnectorQuantity { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 后连接物型号
|
||
/// </summary>
|
||
public string RearConnectorModel { get; set; }
|
||
|
||
/// <summary>
|
||
/// 后连接物料号
|
||
/// </summary>
|
||
public string RearConnectorMCode { get; set; }
|
||
/// <summary>
|
||
/// 后连接物数量
|
||
/// </summary>
|
||
public int RearConnectorQuantity { get; set; }
|
||
|
||
/// <summary>
|
||
/// 号码管型号
|
||
/// </summary>
|
||
[SugarColumn(IsNullable = true)]
|
||
public string NumberTubeModel { get; set; }
|
||
|
||
/// <summary>
|
||
/// 号码管物料编码
|
||
/// </summary>
|
||
[SugarColumn(IsNullable = true)]
|
||
public string NumberTubeMCode { get; set; }
|
||
|
||
/// <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; }
|
||
|
||
/// <summary>
|
||
/// 黑色热缩管型号(插头)
|
||
/// </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; }
|
||
}
|
||
}
|