2023-06-12

This commit is contained in:
2023-06-12 15:02:30 +08:00
parent b9315dd056
commit 624a9d9dc3
4 changed files with 114 additions and 39 deletions
@@ -1,5 +1,6 @@
namespace BLL
{
using MiniExcelLibs.Attributes;
using Model;
using System.Collections.Generic;
using System.Linq;
@@ -80,4 +81,35 @@
}
}
}
public class MaterialCodeLibDtoIn
{
/// <summary>
/// 元件编码
///</summary>
[ExcelColumnName("元件编码")]
public string MaterialCode { get; set; }
/// <summary>
/// 材料描述
///</summary>
[ExcelColumnName("材料描述")]
public string MaterialDef { get; set; }
/// <summary>
/// 规格
///</summary>
[ExcelColumnName("规格")]
public string MaterialSpec { get; set; }
/// <summary>
/// 单位
///</summary>
[ExcelColumnName("单位")]
public string MaterialUnit { get; set; }
/// <summary>
/// 类型
///</summary>
[ExcelColumnName("类型")]
public string MaterialName { get; set; }
}
}