| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- namespace Admin.NET.Plugin.AiDOP.Supply;
- /// <summary>
- /// 交货计划表(ic_demandschedule)
- /// </summary>
- [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; }
- }
|