更改FTP文件导入

This commit is contained in:
2026-01-28 15:04:16 +08:00
parent f65fa21760
commit b940170607
44 changed files with 2748 additions and 271 deletions

View File

@@ -0,0 +1,57 @@
using FreeSql.DataAnnotations;
namespace FATrace.Model
{
/// <summary>
/// 工厂-原料出入库Excel 导入数据,仅展示用)
/// </summary>
[Table(Name = "FactoryRawInOutbound")]
public class FactoryRawInOutbound
{
/// <summary>
/// 主键
/// </summary>
[Column(IsPrimary = true, IsIdentity = true)]
public long Id { get; set; }
/// <summary>
/// 入库时间
/// </summary>
public string? InTime { get; set; }
/// <summary>
/// 出库时间
/// </summary>
public string? OutTime { get; set; }
/// <summary>
/// 产地
/// </summary>
public string? Origin { get; set; }
/// <summary>
/// 原料代码
/// </summary>
public string? RawCode { get; set; }
/// <summary>
/// 原料名称
/// </summary>
public string? RawName { get; set; }
/// <summary>
/// 入库总重量(KG)
/// </summary>
public string? TotalInWeightKg { get; set; }
/// <summary>
/// 出库总重量(KG)
/// </summary>
public string? TotalOutWeightKg { get; set; }
/// <summary>
/// 剩余重量(KG)
/// </summary>
public string? RemainWeightKg { get; set; }
}
}