ShippingPlanDetail.cs 3.1 KB

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