WCSPalletizingrow.cs 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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_PalletizingRow")]
  9. public class WCSPalletizingrow : 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 PalletizingLayerId { get; set; }
  21. /// <summary>
  22. /// 是否空置
  23. /// </summary>
  24. [SugarColumn(ColumnDataType ="bit" , IsNullable = false , ColumnDescription ="是否空置")]
  25. public bool IsEmpty { get; set; }
  26. /// <summary>
  27. /// 数量上限
  28. /// </summary>
  29. [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="数量上限")]
  30. public int QtyMaxCount { get; set; }
  31. /// <summary>
  32. /// 行号
  33. /// </summary>
  34. [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="行号")]
  35. public int RowNo { get; set; }
  36. /// <summary>
  37. /// 是否混合料行
  38. /// </summary>
  39. [SugarColumn(ColumnDataType ="bit" , IsNullable = false , ColumnDescription ="是否混合料行")]
  40. public bool IsMixRow { get; set; }
  41. /// <summary>
  42. /// 任务Id
  43. /// </summary>
  44. [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="任务Id")]
  45. public int CacheLineId { get; set; }
  46. /// <summary>
  47. /// 当前所有的物料号
  48. /// </summary>
  49. [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = true , ColumnDescription ="当前所有的物料号")]
  50. public string MatCodeList { get; set; }
  51. /// <summary>
  52. /// 是否结束
  53. /// </summary>
  54. [SugarColumn(ColumnDataType ="bit" , IsNullable = false , ColumnDescription ="是否结束")]
  55. public bool Finish { get; set; }
  56. /// <summary>
  57. /// 取货线体号
  58. /// </summary>
  59. [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = true , ColumnDescription ="取货线体号")]
  60. public string LineCode { get; set; }
  61. /// <summary>
  62. /// 创建时间
  63. /// </summary>
  64. [SugarColumn(IsNullable = true, ColumnDescription = "创建时间")]
  65. public DateTime AddTime { get; set; }
  66. /// <summary>
  67. /// 编辑时间
  68. /// </summary>
  69. [SugarColumn(IsNullable = true, ColumnDescription = "编辑时间")]
  70. public DateTime EditTime { get; set; }
  71. /// <summary>
  72. /// 仓库编号
  73. /// </summary>
  74. [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = true , ColumnDescription ="仓库编号")]
  75. public string WarehouseCode { get; set; }
  76. }
  77. }