using FreeSql.DataAnnotations;
namespace FATrace.Model
{
///
/// 工厂-成品入库(Excel 导入数据,仅展示用)
///
[Table(Name = "FactoryInbound")]
public class FactoryInbound
{
///
/// 主键
///
[Column(IsPrimary = true, IsIdentity = true)]
public long Id { get; set; }
///
/// 批号
///
public string? Batch { get; set; }
///
/// 重量(G)
///
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; }
}
}