DemandSchedule.cs 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. namespace Admin.NET.Plugin.AiDOP.Supply;
  2. /// <summary>
  3. /// 交货计划表(ic_demandschedule)
  4. /// </summary>
  5. [SugarTable("ic_demandschedule", "交货计划表")]
  6. public class DemandSchedule
  7. {
  8. [SugarColumn(ColumnName = "Id", IsPrimaryKey = true, IsIdentity = false)]
  9. public long Id { get; set; }
  10. [SugarColumn(ColumnName = "itemnum", Length = 64, IsNullable = true)]
  11. public string? ItemNum { get; set; }
  12. [SugarColumn(ColumnName = "fversion", Length = 64, IsNullable = true)]
  13. public string? FVersion { get; set; }
  14. [SugarColumn(ColumnName = "drawing", Length = 128, IsNullable = true)]
  15. public string? Drawing { get; set; }
  16. [SugarColumn(ColumnName = "requestdate", IsNullable = true)]
  17. public DateTime? RequestDate { get; set; }
  18. [SugarColumn(ColumnName = "arrivaldate", IsNullable = true)]
  19. public DateTime? ArrivalDate { get; set; }
  20. [SugarColumn(ColumnName = "shortqty", IsNullable = true)]
  21. public decimal? ShortQty { get; set; }
  22. [SugarColumn(ColumnName = "mesqty", IsNullable = true)]
  23. public decimal? MesQty { get; set; }
  24. [SugarColumn(ColumnName = "locqty", IsNullable = true)]
  25. public decimal? LocQty { get; set; }
  26. [SugarColumn(ColumnName = "sechedqty", IsNullable = true)]
  27. public decimal? SechedQty { get; set; }
  28. [SugarColumn(ColumnName = "tosechedqty", IsNullable = true)]
  29. public decimal? ToSechedQty { get; set; }
  30. [SugarColumn(ColumnName = "status", Length = 8, IsNullable = true)]
  31. public string? Status { get; set; }
  32. [SugarColumn(ColumnName = "remarks", Length = 500, IsNullable = true)]
  33. public string? Remarks { get; set; }
  34. [SugarColumn(ColumnName = "ishistoryversion", Length = 1, IsNullable = true)]
  35. public string? IsHistoryVersion { get; set; }
  36. [SugarColumn(ColumnName = "historyversionTime", IsNullable = true)]
  37. public DateTime? HistoryVersionTime { get; set; }
  38. [SugarColumn(ColumnName = "create_by", IsNullable = true)]
  39. public long? CreateBy { get; set; }
  40. [SugarColumn(ColumnName = "create_by_name", Length = 64, IsNullable = true)]
  41. public string? CreateByName { get; set; }
  42. [SugarColumn(ColumnName = "create_time", IsNullable = true)]
  43. public DateTime? CreateTime { get; set; }
  44. [SugarColumn(ColumnName = "update_by", IsNullable = true)]
  45. public long? UpdateBy { get; set; }
  46. [SugarColumn(ColumnName = "update_by_name", Length = 64, IsNullable = true)]
  47. public string? UpdateByName { get; set; }
  48. [SugarColumn(ColumnName = "update_time", IsNullable = true)]
  49. public DateTime? UpdateTime { get; set; }
  50. [SugarColumn(ColumnName = "tenant_id", IsNullable = true)]
  51. public long? TenantId { get; set; }
  52. [SugarColumn(ColumnName = "factory_id", IsNullable = true)]
  53. public long? FactoryId { get; set; }
  54. [SugarColumn(ColumnName = "org_id", IsNullable = true)]
  55. public long? OrgId { get; set; }
  56. [SugarColumn(ColumnName = "IsDeleted", IsNullable = true)]
  57. public int? IsDeleted { get; set; }
  58. [SugarColumn(ColumnName = "company_id", IsNullable = true)]
  59. public long? CompanyId { get; set; }
  60. [SugarColumn(ColumnName = "wolist", Length = 2000, IsNullable = true)]
  61. public string? WoList { get; set; }
  62. [SugarColumn(ColumnName = "bangid", Length = 128, IsNullable = true)]
  63. public string? BangId { get; set; }
  64. }