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

58 lines
1.3 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 = "OEMOutbound")]
public class OEMOutbound
{
/// <summary>
/// 主键
/// </summary>
[Column(IsPrimary = true, IsIdentity = true)]
public long Id { get; set; }
/// <summary>
/// 批号
/// </summary>
public string? Batch { get; set; }
/// <summary>
/// 重量
/// </summary>
public string? Weight { get; set; }
/// <summary>
/// 保质期
/// </summary>
public string? ShelfLife { get; set; }
/// <summary>
/// 产地
/// </summary>
public string? Origin { get; set; }
/// <summary>
/// 原料代码
/// </summary>
public string? RawCode { get; set; }
/// <summary>
/// 原料名称
/// </summary>
public string? RawName { get; set; }
/// <summary>
/// 序号
/// </summary>
public string? SequenceNo { get; set; }
/// <summary>
/// 登录日期时间
/// </summary>
public string? LoginDateTime { get; set; }
}
}