Files
FATrace/FATrace.Model/FileModel/OEMInOutbound.cs
2026-01-28 15:04:16 +08:00

63 lines
1.4 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using FreeSql.DataAnnotations;
namespace FATrace.Model
{
/// <summary>
/// OEM-出入库Excel 导入数据,仅展示用)
/// </summary>
[Table(Name = "OEMInOutbound")]
public class OEMInOutbound
{
/// <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? Batch { get; set; }
/// <summary>
/// 原料代码
/// </summary>
public string? RawCode { get; set; }
/// <summary>
/// 原料名称
/// </summary>
public string? RawName { get; set; }
/// <summary>
/// 入库总箱数
/// </summary>
public string? TotalInCase { get; set; }
/// <summary>
/// 出库总箱数
/// </summary>
public string? TotalOutCase { get; set; }
/// <summary>
/// 剩余箱数
/// </summary>
public string? RemainCase { get; set; }
}
}