AsnShipperDetail.cs 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. namespace Admin.NET.Plugin.AiDOP.Order;
  2. /// <summary>
  3. /// 销售发货明细表(ASNBOLShipperDetail)
  4. /// </summary>
  5. [IgnoreTable]
  6. [SugarTable("ASNBOLShipperDetail", "销售订单发货通知单子表")]
  7. public class AsnShipperDetail
  8. {
  9. [SugarColumn(ColumnName = "RecID", IsPrimaryKey = true, IsIdentity = true)]
  10. public int RecID { get; set; }
  11. [SugarColumn(ColumnName = "Domain", Length = 64, IsNullable = true)]
  12. public string? Domain { get; set; }
  13. /// <summary>货运单号(关联主表 Id)</summary>
  14. [SugarColumn(ColumnName = "Id", Length = 64, IsNullable = true)]
  15. public string? Id { get; set; }
  16. /// <summary>升降序标识(关联主表 RecID)</summary>
  17. [SugarColumn(ColumnName = "ASNBOLShipperRecID", IsNullable = true)]
  18. public int? AsnShipperRecID { get; set; }
  19. [SugarColumn(ColumnName = "Line", IsNullable = true)]
  20. public int? Line { get; set; }
  21. [SugarColumn(ColumnName = "OrdNbr", Length = 64, IsNullable = true)]
  22. public string? OrdNbr { get; set; }
  23. [SugarColumn(ColumnName = "OrdLine", IsNullable = true)]
  24. public int? OrdLine { get; set; }
  25. [SugarColumn(ColumnName = "ContainerItem", Length = 64, IsNullable = true)]
  26. public string? ContainerItem { get; set; }
  27. [SugarColumn(ColumnName = "Descr", Length = 256, IsNullable = true)]
  28. public string? Descr { get; set; }
  29. [SugarColumn(ColumnName = "UM", Length = 32, IsNullable = true)]
  30. public string? UM { get; set; }
  31. [SugarColumn(ColumnName = "Location", Length = 64, IsNullable = true)]
  32. public string? Location { get; set; }
  33. [SugarColumn(ColumnName = "LotSerial", Length = 64, IsNullable = true)]
  34. public string? LotSerial { get; set; }
  35. [SugarColumn(ColumnName = "QtyToShip", IsNullable = true)]
  36. public decimal? QtyToShip { get; set; }
  37. [SugarColumn(ColumnName = "PickingQty", IsNullable = true)]
  38. public decimal? PickingQty { get; set; }
  39. [SugarColumn(ColumnName = "RealQty", IsNullable = true)]
  40. public decimal? RealQty { get; set; }
  41. [SugarColumn(ColumnName = "Status", Length = 32, IsNullable = true)]
  42. public string? Status { get; set; }
  43. [SugarColumn(ColumnName = "Remark", Length = 512, IsNullable = true)]
  44. public string? Remark { get; set; }
  45. [SugarColumn(ColumnName = "ShType", Length = 16, IsNullable = true)]
  46. public string? ShType { get; set; }
  47. [SugarColumn(ColumnName = "Typed", Length = 16, IsNullable = true)]
  48. public string? Typed { get; set; }
  49. [SugarColumn(ColumnName = "IsActive", IsNullable = true)]
  50. public int? IsActive { get; set; }
  51. [SugarColumn(ColumnName = "IsConfirm", IsNullable = true)]
  52. public int? IsConfirm { get; set; }
  53. [SugarColumn(ColumnName = "ShipDate", IsNullable = true)]
  54. public DateTime? ShipDate { get; set; }
  55. [SugarColumn(ColumnName = "Site", Length = 64, IsNullable = true)]
  56. public string? Site { get; set; }
  57. [SugarColumn(ColumnName = "CreateUser", Length = 64, IsNullable = true)]
  58. public string? CreateUser { get; set; }
  59. [SugarColumn(ColumnName = "UpdateUser", Length = 64, IsNullable = true)]
  60. public string? UpdateUser { get; set; }
  61. [SugarColumn(ColumnName = "CreateTime2", IsNullable = true)]
  62. public DateTime? CreateTime { get; set; }
  63. [SugarColumn(ColumnName = "UpdateTime", IsNullable = true)]
  64. public DateTime? UpdateTime { get; set; }
  65. }