Excel 数据导入

This commit is contained in:
2026-01-14 21:00:14 +08:00
parent f1a892281b
commit 82d0bd6b95
10 changed files with 814 additions and 256 deletions

View File

@@ -40,18 +40,18 @@ namespace FATrace.Model
public string? RawName { get; set; }
/// <summary>
/// 入库总重量 KG
/// 入库总箱数
/// </summary>
public string? TotalInWeightKg { get; set; }
public string? TotalInCase { get; set; }
/// <summary>
/// 出库总重量 KG
/// 出库总箱数
/// </summary>
public string? TotalOutWeightKg { get; set; }
public string? TotalOutCase { get; set; }
/// <summary>
/// 剩余重量 KG
/// 剩余箱数
/// </summary>
public string? RemainWeightKg { get; set; }
public string? RemainCase { get; set; }
}
}