整体调整了功能

This commit is contained in:
2026-01-13 15:03:02 +08:00
parent 63a768bd80
commit f1a892281b
82 changed files with 11226 additions and 291 deletions

View File

@@ -0,0 +1,57 @@
using FreeSql.DataAnnotations;
namespace FATrace.Model
{
/// <summary>
/// 工厂-出入库Excel 导入数据,仅展示用)
/// </summary>
[Table(Name = "FactoryInventoryTransaction")]
public class FactoryInventoryTransaction
{
/// <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; }
}
}