This commit is contained in:
2026-05-20 14:58:26 +08:00
parent 2b1edf17c1
commit 2e2dd81c16
15 changed files with 462 additions and 818 deletions
+19 -3
View File
@@ -17,13 +17,29 @@ namespace Model
/// </summary>
[ExcelColumnIndex("B")] public string MaterialCode { get; set; }
/// <summary>
/// 数量
/// 炉批号
/// </summary>
[ExcelColumnIndex("C")] public string PlanNum { get; set; }
[ExcelColumnIndex("C")] public string HeatNo { get; set; }
/// <summary>
/// 类型
/// </summary>
[ExcelColumnIndex("D")] public string TypeString { get; set; }
[ExcelColumnIndex("D")] public string MaterialName { get; set; }
/// <summary>
/// 规格
/// </summary>
[ExcelColumnIndex("E")] public string MaterialSpec { get; set; }
/// <summary>
/// 单位
/// </summary>
[ExcelColumnIndex("F")] public string MaterialUnit { get; set; }
/// <summary>
/// 数量
/// </summary>
[ExcelColumnIndex("G")] public string PlanNum { get; set; }
/// <summary>
/// 类型
/// </summary>
[ExcelColumnIndex("H")] public string TypeString { get; set; }
}
}