fjBillMachineInfo.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace wms.sqlsugar.model.fj
  6. {
  7. [Tenant("fj")]
  8. [SugarTable("bill_machine_info", "机台信息表")]
  9. public class fjBillMachineInfo : BaseModel
  10. {
  11. /// <summary>
  12. /// 机台号
  13. /// </summary>
  14. [SugarColumn(ColumnName = "wb_code", ColumnDataType = "nvarchar", Length = 50)]
  15. public string WbCode { get; set; }
  16. /// <summary>
  17. /// 机台名称
  18. /// </summary>
  19. [SugarColumn(ColumnName = "wb_name", ColumnDataType = "nvarchar", Length = 100)]
  20. public string WbName { get; set; }
  21. /// <summary>
  22. /// 机台组
  23. /// </summary>
  24. [SugarColumn(ColumnName = "wb_group_code", ColumnDataType = "nvarchar", Length = 100)]
  25. public string WbGroupCode { get; set; }
  26. /// <summary>
  27. /// 优先分配分拣库序号
  28. /// </summary>
  29. [SugarColumn(ColumnName = "ware_code", ColumnDataType = "nvarchar", Length = 50)]
  30. public string WareCode { get; set; }
  31. /// <summary>
  32. /// AGV托盘位
  33. /// </summary>
  34. [SugarColumn(ColumnName = "station", ColumnDataType = "nvarchar", Length = 50)]
  35. public string Station { get; set; }
  36. /// <summary>
  37. /// 左/右手车
  38. /// </summary>
  39. [SugarColumn(ColumnName = "direction", ColumnDataType = "nvarchar", Length = 50)]
  40. public string Direction { get; set; }
  41. /// <summary>
  42. /// 帘线工单号
  43. /// </summary>
  44. [SugarColumn(ColumnName = "doc_code", ColumnDataType = "nvarchar", Length = 50)]
  45. public string DocCode { get; set; }
  46. }
  47. }