BillMachinfo.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. using System;
  2. using System.Collections.Generic;
  3. using SqlSugar;
  4. namespace wms.sqlsugar.model.sx
  5. {
  6. [Tenant("sx")]
  7. [SugarTable("Bill_MachInfo")]
  8. public partial class BillMachinfo : BaseModel
  9. {
  10. /// <summary>
  11. /// 仓库id
  12. /// </summary>
  13. [SugarColumn(ColumnDataType = "bigint", IsNullable = false)]
  14. public long WarehouseId { get; set; }
  15. /// <summary>
  16. /// 仓库编码(1N,1S,2N,2S,3N,3S)
  17. /// </summary>
  18. [SugarColumn(ColumnDataType = "nvarchar", Length = 50)]
  19. public string WarehouseCode { get; set; }
  20. /// <summary>
  21. /// 分拣库序号
  22. /// </summary>
  23. [SugarColumn(ColumnDataType = "int")]
  24. public int WarehouseSort { get; set; }
  25. /// <summary>
  26. /// 南北向
  27. /// </summary>
  28. [SugarColumn(ColumnDataType = "nvarchar", Length = 50)]
  29. public string WareDirect { get; set; }
  30. /// <summary>
  31. /// WareAreaId
  32. /// </summary>
  33. [SugarColumn(ColumnDataType = "bigint", IsNullable = false)]
  34. public long WareAreaId { get; set; }
  35. /// <summary>
  36. /// 是否停止
  37. /// </summary>
  38. [SugarColumn(ColumnDataType = "int", IsNullable = false)]
  39. public int IsStop { get; set; }
  40. /// <summary>
  41. /// 机台号
  42. /// </summary>
  43. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  44. public string MachNo { get; set; }
  45. /// <summary>
  46. /// 名称
  47. /// </summary>
  48. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false)]
  49. public string Name { get; set; }
  50. /// <summary>
  51. /// 机台组
  52. /// </summary>
  53. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  54. public string GrpCode { get; set; }
  55. /// <summary>
  56. /// AGV托盘位
  57. /// </summary>
  58. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  59. public string Station { get; set; }
  60. /// <summary>
  61. /// 左/右手车
  62. /// </summary>
  63. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  64. public string Direction { get; set; }
  65. /// <summary>
  66. /// 帘线工序工单号
  67. /// </summary>
  68. [SugarColumn(ColumnName = "DocCode", ColumnDataType = "nvarchar", Length = 50)]
  69. public string BillCode { get; set; }
  70. /// <summary>
  71. /// 生产订单号
  72. /// </summary>
  73. [SugarColumn(ColumnName = "WorkOrder", ColumnDataType = "nvarchar", Length = 50)]
  74. public string WorkOrder { get; set; }
  75. /// <summary>
  76. /// 垛型编码
  77. /// </summary>
  78. [SugarColumn(ColumnName = "SetGrpCode", ColumnDataType = "nvarchar", Length = 50)]
  79. public string SetGrpCode { get; set; }
  80. /// <summary>
  81. /// 预排帘线工序工单号
  82. /// </summary>
  83. [SugarColumn(ColumnName = "ProBillCode", ColumnDataType = "nvarchar", Length = 50)]
  84. public string ProBillCode { get; set; }
  85. /// <summary>
  86. /// 预排生产订单号
  87. /// </summary>
  88. [SugarColumn(ColumnName = "ProWorkOrder", ColumnDataType = "nvarchar", Length = 50)]
  89. public string ProWorkOrder { get; set; }
  90. /// <summary>
  91. /// 预排垛型编码
  92. /// </summary>
  93. [SugarColumn(ColumnName = "ProSetGrpCode", ColumnDataType = "nvarchar", Length = 50)]
  94. public string ProSetGrpCode { get; set; }
  95. /// <summary>
  96. /// 机器类型编码
  97. /// </summary>
  98. [SugarColumn(ColumnName = "MacTypeCode", ColumnDataType = "nvarchar", Length = 50)]
  99. public string MacTypeCode { get; set; }
  100. /// <summary>
  101. /// 机器类型名称
  102. /// </summary>
  103. [SugarColumn(ColumnName = "MacTypeName", ColumnDataType = "nvarchar", Length = 50)]
  104. public string MacTypeName { get; set; }
  105. }
  106. }