ShippingPlan.cs 2.3 KB

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