BillMachinfo.cs 2.9 KB

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