ShippingPlanDetail.cs 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. /// <summary>绉熸埛ID锛堝绉熸埛闅旂锛?/summary>
  61. [SugarColumn(ColumnName = "tenant_id", IsNullable = true)]
  62. public long? TenantId { get; set; }
  63. }