ShippingPlan.cs 2.1 KB

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