namespace ZR.Model.MES.wms { /// /// 毛坯库存表 /// [SugarTable("wm_blank_inventory")] public class WmBlankInventory { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false)] public string Id { get; set; } /// /// 油漆id /// [SugarColumn(ColumnName = "fk_paint_id")] public string FkPaintId { get; set; } /// /// 毛坯号 /// [SugarColumn(ColumnName = "blank_num")] public string BlankNum { get; set; } /// /// 库存数量 /// public int? Quantity { get; set; } /// /// 最大库存 /// [SugarColumn(ColumnName = "max_num")] public int? MaxNum { get; set; } /// /// 最小库存 /// [SugarColumn(ColumnName = "min_num")] public int? MinNum { get; set; } /// /// 预警库存 /// [SugarColumn(ColumnName = "warn_num")] public int? WarnNum { get; set; } /// /// 类别 /// public int? Type { get; set; } /// /// 状态 /// public int? Status { get; set; } /// /// 备注 /// public string Remark { 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; } } }