Palletlayermath.cs 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. using System;
  2. using System.Collections.Generic;
  3. using SqlSugar;
  4. using WMS.BZModels;
  5. namespace wms.sqlsugar.model.sx
  6. {
  7. [Tenant("sx")]
  8. [SugarTable("PalletLayerMath")]
  9. public class Palletlayermath : BaseModel
  10. {
  11. /// <summary>
  12. /// 组盘id
  13. /// </summary>
  14. [SugarColumn(ColumnDataType = "bigint", IsNullable = false, ColumnDescription = "组盘id")]
  15. public long ContGrpId { get; set; }
  16. /// <summary>
  17. /// 工字轮条码
  18. /// </summary>
  19. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false, ColumnDescription = "工字轮条码")]
  20. public string ContBarCode { get; set; }
  21. /// <summary>
  22. /// 码垛层数
  23. /// </summary>
  24. [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "码垛层数")]
  25. public int Layer { get; set; }
  26. /// <summary>
  27. /// sku
  28. /// </summary>
  29. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true, ColumnDescription = "sku")]
  30. public string SkuCode { get; set; }
  31. /// <summary>
  32. /// 是否码垛完成
  33. /// </summary>
  34. [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "是否码垛完成")]
  35. public int Finish { get; set; }
  36. /// <summary>
  37. /// 装箱规则id
  38. /// </summary>
  39. [SugarColumn(ColumnDataType = "bigint", IsNullable = false, ColumnDescription = "装箱规则id")]
  40. public long PboxruleId { get; set; }
  41. /// <summary>
  42. /// 是否产生任务
  43. /// </summary>
  44. [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "是否产生任务")]
  45. public int Istask { get; set; }
  46. /// <summary>
  47. /// 码垛工位
  48. /// </summary>
  49. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false, ColumnDescription = "码垛工位")]
  50. public string Palletequip { get; set; }
  51. /// <summary>
  52. /// IsBlack
  53. /// </summary>
  54. [SugarColumn(ColumnDataType = "bit", IsNullable = false)]
  55. public bool IsBlack { get; set; }
  56. /// <summary>
  57. /// Depth
  58. /// </summary>
  59. [SugarColumn(ColumnDataType = "int", IsNullable = false)]
  60. public int Depth { get; set; }
  61. /// <summary>
  62. /// SolderCount
  63. /// </summary>
  64. [SugarColumn(ColumnDataType = "decimal", Length = 18, IsNullable = true)]
  65. public decimal? SolderCount { get; set; }
  66. /// <summary>
  67. /// BoxCode
  68. /// </summary>
  69. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
  70. public string BoxCode { get; set; }
  71. }
  72. }