This commit is contained in:
2024-09-27 18:17:21 +08:00
parent be070f85e2
commit 064a849b97
73 changed files with 3248 additions and 589 deletions
+4 -4
View File
@@ -7,18 +7,18 @@ namespace Model
/// <summary>
/// 申请单编号
/// </summary>
[ExcelColumnIndex("A")] public string CusBillCode { get; set; }
public string CusBillCode { get; set; }
/// <summary>
/// 仓库
/// </summary>
[ExcelColumnIndex("B")] public string WarehouseCode { get; set; }
[ExcelColumnIndex("A")] public string WarehouseCode { get; set; }
/// <summary>
/// 材料编码
/// </summary>
[ExcelColumnIndex("C")] public string MaterialCode { get; set; }
[ExcelColumnIndex("B")] public string MaterialCode { get; set; }
/// <summary>
/// 数量
/// </summary>
[ExcelColumnIndex("D")] public string PlanNum { get; set; }
[ExcelColumnIndex("C")] public string PlanNum { get; set; }
}
}