WCSPalletizing.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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_Palletizing")]
  9. public class WCSPalletizing : 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 TaskId { get; set; }
  21. /// <summary>
  22. /// 任务Id
  23. /// </summary>
  24. [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = true , ColumnDescription ="任务Id")]
  25. public string PalleCode { get; set; }
  26. /// <summary>
  27. /// 垛型编码
  28. /// </summary>
  29. [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = false , ColumnDescription ="垛型编码")]
  30. public string Code { get; set; }
  31. /// <summary>
  32. /// 短垛型编码
  33. /// </summary>
  34. [SugarColumn(ColumnDataType ="smallint" , IsNullable = false , ColumnDescription ="短垛型编码")]
  35. public int ShortCode { get; set; }
  36. /// <summary>
  37. /// 帘线物料编码
  38. /// </summary>
  39. [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = false , ColumnDescription ="帘线物料编码")]
  40. public string ProMaterCode { get; set; }
  41. /// <summary>
  42. /// 码垛工位
  43. /// </summary>
  44. [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = true , ColumnDescription ="码垛工位")]
  45. public string PalletizingStation { get; set; }
  46. /// <summary>
  47. /// 产品总数
  48. /// </summary>
  49. [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="产品总数")]
  50. public int CountQty { get; set; }
  51. /// <summary>
  52. /// 托盘类型
  53. /// </summary>
  54. [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = false , ColumnDescription ="托盘类型")]
  55. public string TpTypeCode { get; set; }
  56. /// <summary>
  57. /// 层数
  58. /// </summary>
  59. [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="层数")]
  60. public int LayerCountQty { get; set; }
  61. /// <summary>
  62. /// 垛型大类
  63. /// </summary>
  64. [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="垛型大类")]
  65. public int StampType { get; set; }
  66. /// <summary>
  67. /// 是否结束
  68. /// </summary>
  69. [SugarColumn(ColumnDataType ="bit" , IsNullable = false , ColumnDescription ="是否结束")]
  70. public bool Finish { get; set; }
  71. /// <summary>
  72. /// 当前所有的物料号
  73. /// </summary>
  74. [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = true , ColumnDescription ="当前所有的物料号")]
  75. public string MatCodeList { get; set; }
  76. /// <summary>
  77. /// 仓库编号
  78. /// </summary>
  79. [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = true , ColumnDescription ="仓库编号")]
  80. public string WarehouseCode { get; set; }
  81. /// <summary>
  82. /// 执行设备编号
  83. /// </summary>
  84. [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = true , ColumnDescription ="执行设备编号")]
  85. public string DeviceCode { get; set; }
  86. /// <summary>
  87. /// 创建时间
  88. /// </summary>
  89. [SugarColumn(IsNullable = false, ColumnDescription = "创建时间")]
  90. public DateTime AddTime { get; set; }
  91. }
  92. }