namespace Admin.NET.Plugin.AiDOP.Supply; /// /// 交货计划表(ic_demandschedule) /// [SugarTable("ic_demandschedule", "交货计划表")] public class DemandSchedule { [SugarColumn(ColumnName = "Id", IsPrimaryKey = true, IsIdentity = false)] public long Id { get; set; } [SugarColumn(ColumnName = "itemnum", Length = 64, IsNullable = true)] public string? ItemNum { get; set; } [SugarColumn(ColumnName = "fversion", Length = 64, IsNullable = true)] public string? FVersion { get; set; } [SugarColumn(ColumnName = "drawing", Length = 128, IsNullable = true)] public string? Drawing { get; set; } [SugarColumn(ColumnName = "requestdate", IsNullable = true)] public DateTime? RequestDate { get; set; } [SugarColumn(ColumnName = "arrivaldate", IsNullable = true)] public DateTime? ArrivalDate { get; set; } [SugarColumn(ColumnName = "shortqty", IsNullable = true)] public decimal? ShortQty { get; set; } [SugarColumn(ColumnName = "mesqty", IsNullable = true)] public decimal? MesQty { get; set; } [SugarColumn(ColumnName = "locqty", IsNullable = true)] public decimal? LocQty { get; set; } [SugarColumn(ColumnName = "sechedqty", IsNullable = true)] public decimal? SechedQty { get; set; } [SugarColumn(ColumnName = "tosechedqty", IsNullable = true)] public decimal? ToSechedQty { get; set; } [SugarColumn(ColumnName = "status", Length = 8, IsNullable = true)] public string? Status { get; set; } [SugarColumn(ColumnName = "remarks", Length = 500, IsNullable = true)] public string? Remarks { get; set; } [SugarColumn(ColumnName = "ishistoryversion", Length = 1, IsNullable = true)] public string? IsHistoryVersion { get; set; } [SugarColumn(ColumnName = "historyversionTime", IsNullable = true)] public DateTime? HistoryVersionTime { get; set; } [SugarColumn(ColumnName = "create_by", IsNullable = true)] public long? CreateBy { get; set; } [SugarColumn(ColumnName = "create_by_name", Length = 64, IsNullable = true)] public string? CreateByName { get; set; } [SugarColumn(ColumnName = "create_time", IsNullable = true)] public DateTime? CreateTime { get; set; } [SugarColumn(ColumnName = "update_by", IsNullable = true)] public long? UpdateBy { get; set; } [SugarColumn(ColumnName = "update_by_name", Length = 64, IsNullable = true)] public string? UpdateByName { get; set; } [SugarColumn(ColumnName = "update_time", IsNullable = true)] public DateTime? UpdateTime { get; set; } [SugarColumn(ColumnName = "tenant_id", IsNullable = true)] public long? TenantId { get; set; } [SugarColumn(ColumnName = "factory_id", IsNullable = true)] public long? FactoryId { get; set; } [SugarColumn(ColumnName = "org_id", IsNullable = true)] public long? OrgId { get; set; } [SugarColumn(ColumnName = "IsDeleted", IsNullable = true)] public int? IsDeleted { get; set; } [SugarColumn(ColumnName = "company_id", IsNullable = true)] public long? CompanyId { get; set; } [SugarColumn(ColumnName = "wolist", Length = 2000, IsNullable = true)] public string? WoList { get; set; } [SugarColumn(ColumnName = "bangid", Length = 128, IsNullable = true)] public string? BangId { get; set; } }