namespace DOAN.Model.PBL { /// /// 库存日志 /// [SugarTable("inventorylog")] public class Inventorylog { /// /// 雪花 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false)] public string Id { get; set; } /// /// 料架号 /// [SugarColumn(ColumnName = "rack_code")] public string RackCode { get; set; } /// /// 操作(1出、2入库) /// public int? Operation { get; set; } /// /// 箱子数 /// [SugarColumn(ColumnName = "package_num")] public int? PackageNum { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "cREATED_BY")] public string CreatedBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "cREATED_TIME")] public DateTime? CreatedTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "uPDATED_BY")] public string UpdatedBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "uPDATED_TIME")] public DateTime? UpdatedTime { get; set; } } }