93 lines
2.8 KiB
C#
93 lines
2.8 KiB
C#
|
using MiniExcelLibs.Attributes;
|
|||
|
|
|||
|
namespace Sinvo.EplanHpD.Plugin.WPFUI.Models
|
|||
|
{
|
|||
|
/*序号 规格型号 线材型号规格 线材物料编码 号码管/热缩管型号 号码管物料编码 扁形端子 扁形端子物料编码 O型端子 O型端子物料编码 针型端子 针型端子物料编码 Y形端子 Y形端子物料编码*/
|
|||
|
public class ExcelModel
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 序号
|
|||
|
/// </summary>
|
|||
|
[ExcelColumn(Name = "序号")]
|
|||
|
public int SerialNumber { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 规格型号
|
|||
|
/// </summary>
|
|||
|
[ExcelColumn(Name = "规格型号")]
|
|||
|
public string SpecificationModel { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 线材型号规格
|
|||
|
/// </summary>
|
|||
|
[ExcelColumn(Name = "线材型号规格")]
|
|||
|
public string WireModelSpecification { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 线材物料编码
|
|||
|
/// </summary>
|
|||
|
[ExcelColumn(Name = "线材物料编码")]
|
|||
|
public string WireMaterialCode { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 号码管/热缩管型号
|
|||
|
/// </summary>
|
|||
|
[ExcelColumn(Name = "号码管/热缩管型号")]
|
|||
|
public string TubeModel { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 号码管物料编码
|
|||
|
/// </summary>
|
|||
|
[ExcelColumn(Name = "号码管物料编码")]
|
|||
|
public string TubeMaterialCode { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 扁形端子
|
|||
|
/// </summary>
|
|||
|
[ExcelColumn(Name = "扁形端子")]
|
|||
|
public string FlatTerminal { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 扁形端子物料编码
|
|||
|
/// </summary>
|
|||
|
[ExcelColumn(Name = "扁形端子物料编码")]
|
|||
|
public string FlatTerminalMaterialCode { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// O型端子
|
|||
|
/// </summary>
|
|||
|
[ExcelColumn(Name = "O型端子")]
|
|||
|
public string OTypeTerminal { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// O型端子物料编码
|
|||
|
/// </summary>
|
|||
|
[ExcelColumn(Name = "O型端子物料编码")]
|
|||
|
public string OTypeTerminalMaterialCode { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 针型端子
|
|||
|
/// </summary>
|
|||
|
[ExcelColumn(Name = "针型端子")]
|
|||
|
public string PinTerminal { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 针型端子物料编码
|
|||
|
/// </summary>
|
|||
|
[ExcelColumn(Name = "针型端子物料编码")]
|
|||
|
public string PinTerminalMaterialCode { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Y形端子
|
|||
|
/// </summary>
|
|||
|
[ExcelColumn(Name = "Y形端子")]
|
|||
|
public string YTypeTerminal { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Y形端子物料编码
|
|||
|
/// </summary>
|
|||
|
[ExcelColumn(Name = "Y形端子物料编码")]
|
|||
|
public string YTypeTerminalMaterialCode { get; set; }
|
|||
|
}
|
|||
|
}
|