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; }
///
/// 应用场景
///
public string ApplicationScenario { get; set; }
///
/// 线径规格(mm2)
///
public string WireDiameterSpecification { get; set; }
///
/// 是否高柔
///
public string IsHighFlexibilityStr { get; set; }
///
/// 线芯数
///
public string WireCoreCount { get; set; }
///
/// 线材型号规格
///
public string WireModelSpecification { get; set; }
///
/// 前连接物型号
///
public string FrontConnectorModel { get; set; }
///
/// 前连接物数量
///
public int FrontConnectorQuantity { get; set; }
///
/// 后连接物型号
///
public string RearConnectorModel { get; set; }
///
/// 后连接物数量
///
public int RearConnectorQuantity { get; set; }
///
/// 是否已布线
///
public bool Layouted { get; set; } = false;
}
}