焊接材料管理修改

This commit is contained in:
2024-09-18 10:48:34 +08:00
parent 0675306a8a
commit 1d60c6f97a
72 changed files with 10645 additions and 282 deletions
+24
View File
@@ -0,0 +1,24 @@
using MiniExcelLibs.Attributes;
namespace Model
{
public class Tw_InputDataIn
{
/// <summary>
/// 申请单编号
/// </summary>
[ExcelColumnIndex("A")] public string CusBillCode { get; set; }
/// <summary>
/// 仓库
/// </summary>
[ExcelColumnIndex("B")] public string WarehouseCode { get; set; }
/// <summary>
/// 材料编码
/// </summary>
[ExcelColumnIndex("C")] public string MaterialCode { get; set; }
/// <summary>
/// 数量
/// </summary>
[ExcelColumnIndex("D")] public string PlanNum { get; set; }
}
}