ShippingPlan.cs 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. namespace Admin.NET.Plugin.AiDOP.Order;
  2. /// <summary>
  3. /// 出货计划主表(ShippingPlan)
  4. /// </summary>
  5. [IgnoreTable]
  6. [SugarTable("ShippingPlan", "出货计划表")]
  7. public class ShippingPlan
  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 = "LotSerial", Length = 64, IsNullable = true)]
  14. public string? LotSerial { get; set; }
  15. [SugarColumn(ColumnName = "Remark", Length = 512, IsNullable = true)]
  16. public string? Remark { get; set; }
  17. [SugarColumn(ColumnName = "ShippingSite", Length = 128, IsNullable = true)]
  18. public string? ShippingSite { get; set; }
  19. [SugarColumn(ColumnName = "Status", Length = 32, IsNullable = true)]
  20. public string? Status { get; set; }
  21. [SugarColumn(ColumnName = "CreateUser", Length = 64, IsNullable = true)]
  22. public string? CreateUser { get; set; }
  23. [SugarColumn(ColumnName = "UpdateUser", Length = 64, IsNullable = true)]
  24. public string? UpdateUser { get; set; }
  25. [SugarColumn(ColumnName = "CreateTime", IsNullable = true)]
  26. public DateTime? CreateTime { get; set; }
  27. [SugarColumn(ColumnName = "UpdateTime", IsNullable = true)]
  28. public DateTime? UpdateTime { get; set; }
  29. [SugarColumn(ColumnName = "IsActive", IsNullable = true)]
  30. public int? IsActive { get; set; }
  31. [SugarColumn(ColumnName = "IsConfirm", IsNullable = true)]
  32. public int? IsConfirm { get; set; }
  33. [SugarColumn(ColumnName = "Priority", IsNullable = true)]
  34. public int? Priority { get; set; }
  35. [SugarColumn(ColumnName = "ShippingDate", IsNullable = true)]
  36. public DateTime? ShippingDate { get; set; }
  37. [SugarColumn(ColumnName = "ShippingAddress", Length = 256, IsNullable = true)]
  38. public string? ShippingAddress { get; set; }
  39. [SugarColumn(ColumnName = "Consignee", Length = 128, IsNullable = true)]
  40. public string? Consignee { get; set; }
  41. [SugarColumn(ColumnName = "Telephone", Length = 64, IsNullable = true)]
  42. public string? Telephone { get; set; }
  43. }