EPLAN_PROD_Plugin/Sinvo.EplanHpD.Plugin.WPFUI/Models/WireCheck/InsulationModel.cs

69 lines
1.7 KiB
C#
Raw Normal View History

2024-10-24 18:01:26 +08:00
using MiniExcelLibs.Attributes;
namespace Sinvo.EplanHpD.Plugin.WPFUI.Models
{
/// <summary>
/// 绝缘软套
/// </summary>
public class InsulationModel
{
/*
* /kg
*/
/// <summary>
/// 物料编码
/// </summary>
[ExcelColumn(Name = "物料编码")]
public string MaterialCode { get; set; }
/// <summary>
/// 物料品名
/// </summary>
[ExcelColumn(Name = "物料品名")]
public string MaterialName { get; set; }
/// <summary>
/// 规格
/// </summary>
[ExcelColumn(Name = "规格")]
public string Specification { get; set; }
/// <summary>
/// 品牌
/// </summary>
[ExcelColumn(Name = "品牌")]
public string Brand { get; set; }
/// <summary>
/// 单位
/// </summary>
[ExcelColumn(Name = "单位")]
public string Unit { get; set; }
/// <summary>
/// 对应机加件材质
/// </summary>
[ExcelColumn(Name = "对应机加件材质")]
public string CorrespondingMaterial { get; set; }
/// <summary>
/// 每米/kg
/// </summary>
[ExcelColumn(Name = "每米/kg")]
public string PerMeterOrKg { get; set; }
/// <summary>
/// 采购交货天数
/// </summary>
[ExcelColumn(Name = "采购交货天数")]
public string DeliveryDays { get; set; }
/// <summary>
/// 备注
/// </summary>
[ExcelColumn(Name = "备注")]
public string Remarks { get; set; }
}
}