using FreeSql.DataAnnotations;
namespace FATrace.Model
{
///
/// OEM-出库(Excel 导入数据,仅展示用)
///
[Table(Name = "OEMOutbound")]
public class OEMOutbound
{
///
/// 主键
///
[Column(IsPrimary = true, IsIdentity = true)]
public long Id { get; set; }
///
/// 批号
///
public string? Batch { get; set; }
///
/// 重量
///
public string? Weight { get; set; }
///
/// 保质期
///
public string? ShelfLife { get; set; }
///
/// 产地
///
public string? Origin { get; set; }
///
/// 原料代码
///
public string? RawCode { get; set; }
///
/// 原料名称
///
public string? RawName { get; set; }
///
/// 序号
///
public string? SequenceNo { get; set; }
///
/// 登录日期时间
///
public string? LoginDateTime { get; set; }
}
}