EPLAN_PROD_Plugin/Sinvo.EplanHpD.Plugin.Service/Model/MultiCoreWireLecDBModel.cs

74 lines
1.8 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 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>
/// 前连接物型号
/// </summary>
public string FrontConnectorModel { get; set; }
/// <summary>
/// 前连接物数量
/// </summary>
public int FrontConnectorQuantity { get; set; }
/// <summary>
/// 后连接物型号
/// </summary>
public string RearConnectorModel { get; set; }
/// <summary>
/// 后连接物数量
/// </summary>
public int RearConnectorQuantity { get; set; }
/// <summary>
/// 是否已布线
/// </summary>
public bool Layouted { get; set; } = false;
}
}