WCSPalletizingloc.cs 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. using System;
  2. using System.Collections.Generic;
  3. using SqlSugar;
  4. using WMS.BZModels;
  5. namespace wms.sqlsugar.model.fj
  6. {
  7. [Tenant("fj")]
  8. [SugarTable("WCS_PalletizingLoc")]
  9. public class WCSPalletizingloc : BaseEntityModel
  10. {
  11. /// <summary>
  12. /// Id
  13. /// </summary>
  14. [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "Id")]
  15. public int Id { get; set; }
  16. /// <summary>
  17. /// 码垛位信息表Id
  18. /// </summary>
  19. [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="码垛位信息表Id")]
  20. public int PalletizingRowId { get; set; }
  21. /// <summary>
  22. /// 码垛位信息表Id
  23. /// </summary>
  24. [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="码垛位信息表Id")]
  25. public int PalletizingId { get; set; }
  26. /// <summary>
  27. /// 任务Id
  28. /// </summary>
  29. [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="任务Id")]
  30. public int TaskId { get; set; }
  31. /// <summary>
  32. /// 是否空置
  33. /// </summary>
  34. [SugarColumn(ColumnDataType ="bit" , IsNullable = false , ColumnDescription ="是否空置")]
  35. public bool IsEmpty { get; set; }
  36. /// <summary>
  37. /// 坐标号
  38. /// </summary>
  39. [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = false , ColumnDescription ="坐标号")]
  40. public string XYNo { get; set; }
  41. /// <summary>
  42. /// 所属设备号
  43. /// </summary>
  44. [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = true , ColumnDescription ="所属设备号")]
  45. public string DevCode { get; set; }
  46. /// <summary>
  47. /// 物料编码
  48. /// </summary>
  49. [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = false , ColumnDescription ="物料编码")]
  50. public string MatCode { get; set; }
  51. /// <summary>
  52. /// 正反面
  53. /// </summary>
  54. [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="正反面")]
  55. public int SideNum { get; set; }
  56. /// <summary>
  57. /// 工字轮类型
  58. /// </summary>
  59. [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = false , ColumnDescription ="工字轮类型")]
  60. public string SpoolType { get; set; }
  61. /// <summary>
  62. /// 是否结束
  63. /// </summary>
  64. [SugarColumn(ColumnDataType ="bit" , IsNullable = false , ColumnDescription ="是否结束")]
  65. public bool Finish { get; set; }
  66. /// <summary>
  67. /// 仓库编号
  68. /// </summary>
  69. [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = true , ColumnDescription ="仓库编号")]
  70. public string WarehouseCode { get; set; }
  71. }
  72. }