Palletizing.cs 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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("Palletizing")]
  9. public class Palletizing : BaseModel
  10. {
  11. /// <summary>
  12. /// 码垛工位
  13. /// </summary>
  14. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false, ColumnDescription = "码垛工位")]
  15. public string Equip { get; set; }
  16. /// <summary>
  17. /// 最大码垛数量
  18. /// </summary>
  19. [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "最大码垛数量")]
  20. public int PalletMax { get; set; }
  21. /// <summary>
  22. /// 是否强制结盘
  23. /// </summary>
  24. [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "是否强制结盘")]
  25. public int Finish { get; set; }
  26. /// <summary>
  27. /// 码垛状态
  28. /// </summary>
  29. [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "码垛状态")]
  30. public int PalletizState { get; set; }
  31. /// <summary>
  32. /// 装箱规则
  33. /// </summary>
  34. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false, ColumnDescription = "装箱规则")]
  35. public string BoxRule { get; set; }
  36. /// <summary>
  37. /// 托盘任务
  38. /// </summary>
  39. [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "托盘任务")]
  40. public int TaskNum { get; set; }
  41. /// <summary>
  42. /// 装箱规则id
  43. /// </summary>
  44. [SugarColumn(ColumnDataType = "bigint", IsNullable = false, ColumnDescription = "装箱规则id")]
  45. public long BoxRuleId { get; set; }
  46. /// <summary>
  47. /// Count
  48. /// </summary>
  49. [SugarColumn(ColumnDataType = "int", IsNullable = false)]
  50. public int Count { get; set; }
  51. /// <summary>
  52. /// IsControlpanel
  53. /// </summary>
  54. [SugarColumn(ColumnDataType = "bit", IsNullable = false)]
  55. public bool IsControlpanel { get; set; }
  56. /// <summary>
  57. /// GoodsType
  58. /// </summary>
  59. [SugarColumn(ColumnDataType = "int", IsNullable = true)]
  60. public int? GoodsType { get; set; }
  61. }
  62. }