EPLAN_PROD_Plugin/Sinvo.EplanHpD.Plugin.WPFUI/Models/ReportModel.cs

53 lines
1.6 KiB
C#
Raw Normal View History

2024-10-24 18:01:26 +08:00
namespace Sinvo.EplanHpD.Plugin.WPFUI.Models
{
public class ReportModel : CheckedModel
{
public string OccPartId { get; set; }
2024-10-24 18:01:26 +08:00
/// 项目
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; }
/// <summary>
/// 导线名称
/// </summary>
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; }
}
}