ShippingPlanDetail.cs 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. namespace Admin.NET.Plugin.AiDOP.Order;
  2. /// <summary>
  3. /// 出货计划明细表(ShippingPlanDetail)
  4. /// </summary>
  5. [SugarTable("ShippingPlanDetail", "出货计划明细表")]
  6. public class ShippingPlanDetail
  7. {
  8. [SugarColumn(ColumnName = "RecID", IsPrimaryKey = true)]
  9. public int RecID { get; set; }
  10. [SugarColumn(ColumnName = "Domain", Length = 64, IsNullable = true)]
  11. public string? Domain { get; set; }
  12. [SugarColumn(ColumnName = "plan_id", IsNullable = true)]
  13. public int? PlanId { get; set; }
  14. [SugarColumn(ColumnName = "OrdNbr", Length = 64, IsNullable = true)]
  15. public string? OrdNbr { get; set; }
  16. [SugarColumn(ColumnName = "bill_no", Length = 64, IsNullable = true)]
  17. public string? BillNo { get; set; }
  18. [SugarColumn(ColumnName = "ItemNum", Length = 64, IsNullable = true)]
  19. public string? ItemNum { get; set; }
  20. [SugarColumn(ColumnName = "ItemName", Length = 128, IsNullable = true)]
  21. public string? ItemName { get; set; }
  22. [SugarColumn(ColumnName = "Specification", Length = 256, IsNullable = true)]
  23. public string? Specification { get; set; }
  24. [SugarColumn(ColumnName = "Qty", IsNullable = true)]
  25. public decimal? Qty { get; set; }
  26. [SugarColumn(ColumnName = "Packaging", Length = 256, IsNullable = true)]
  27. public string? Packaging { get; set; }
  28. [SugarColumn(ColumnName = "Weight", IsNullable = true)]
  29. public decimal? Weight { get; set; }
  30. [SugarColumn(ColumnName = "Volume", IsNullable = true)]
  31. public decimal? Volume { get; set; }
  32. [SugarColumn(ColumnName = "OrdDate", IsNullable = true)]
  33. public DateTime? OrdDate { get; set; }
  34. [SugarColumn(ColumnName = "Country", Length = 64, IsNullable = true)]
  35. public string? Country { get; set; }
  36. [SugarColumn(ColumnName = "CustomNo", Length = 64, IsNullable = true)]
  37. public string? CustomNo { get; set; }
  38. [SugarColumn(ColumnName = "CustomName", Length = 128, IsNullable = true)]
  39. public string? CustomName { get; set; }
  40. [SugarColumn(ColumnName = "seorder_id", IsNullable = true)]
  41. public int? SeOrderId { get; set; }
  42. [SugarColumn(ColumnName = "sentry_id", IsNullable = true)]
  43. public long? SentryId { get; set; }
  44. [SugarColumn(ColumnName = "Remark", Length = 512, IsNullable = true)]
  45. public string? Remark { get; set; }
  46. [SugarColumn(ColumnName = "Status", Length = 32, IsNullable = true)]
  47. public string? Status { get; set; }
  48. [SugarColumn(ColumnName = "CreateUser", Length = 64, IsNullable = true)]
  49. public string? CreateUser { get; set; }
  50. [SugarColumn(ColumnName = "UpdateUser", Length = 64, IsNullable = true)]
  51. public string? UpdateUser { get; set; }
  52. [SugarColumn(ColumnName = "CreateTime", IsNullable = true)]
  53. public DateTime? CreateTime { get; set; }
  54. [SugarColumn(ColumnName = "UpdateTime", IsNullable = true)]
  55. public DateTime? UpdateTime { get; set; }
  56. [SugarColumn(ColumnName = "IsActive", IsNullable = true)]
  57. public int? IsActive { get; set; }
  58. [SugarColumn(ColumnName = "IsConfirm", IsNullable = true)]
  59. public int? IsConfirm { get; set; }
  60. }