namespace Sinvo.EplanHpD.Plugin.WPFUI.Models { public class ReportModel : CheckedModel { /// 项目 public string Project { get; set; } /// 归属机构 public string Document { get; set; } /// 电缆名称 public string CableName { get; set; } /// 规格型号 public string PartNumber { get; set; } /// 品牌 public string ManufacturerCompany { get; set; } /// 电线标码 public string Imprint { get; set; } /// 长度(mm) public string Length { get; set; } /// 外径 public string OutsideDiameter { get; set; } /// 截面积 public string CoreDiameter { get; set; } /// 物料编号 public string ERPNr { get; set; } /// 电线颜色 public string DisplayColor { get; set; } /// 电线条颜色 public string DisplayStripeColor { get; set; } /// /// 导线名称 /// public string WireName { get; set; } /// 绞线 public string WireTwisted { get; set; } /// 前端子型号 public string ConnectorFrom { get; set; } /// 前端子物料编码 public string ConnectorFromERPNr { get; set; } /// 前端剥线长度 public string StripLengthFrom { get; set; } /// 后端子型号 public string ConnectorTo { get; set; } /// 后端子物料编码 public string ConnectorToERPNr { get; set; } /// 后端剥线长度 public string StripLengthTo { get; set; } } }