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

44 lines
999 B
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 = "OEMRawUsageInfo")]
public class OEMRawUsageInfo
{
/// <summary>
/// 主键
/// </summary>
[Column(IsPrimary = true, IsIdentity = true)]
public long Id { get; set; }
/// <summary>
/// 原料使用时间
/// </summary>
public string? RawUseTime { get; set; }
/// <summary>
/// 内袋二维码
/// </summary>
public string? InBagCode { get; set; }
/// <summary>
/// 原料产地
/// </summary>
public string? Origin { get; set; }
/// <summary>
/// 原料名称
/// </summary>
public string? RawName { get; set; }
/// <summary>
/// 原料代码
/// </summary>
public string? RawCode { get; set; }
}
}