BillBomsetgrp.cs 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. using System;
  2. using System.Collections.Generic;
  3. using SqlSugar;
  4. namespace wms.sqlsugar.model.fj
  5. {
  6. /// <summary>
  7. ///
  8. /// </summary>
  9. [Tenant("fj")]
  10. [SugarTable("Bill_BomSetGrp")]
  11. public partial class BillBomsetgrp : BaseModel
  12. {
  13. /// <summary>
  14. /// IsStop
  15. /// </summary>
  16. [SugarColumn(ColumnDataType ="int" , IsNullable = false )]
  17. public int IsStop { get; set; }
  18. /// <summary>
  19. /// WarehouseId
  20. /// </summary>
  21. [SugarColumn(ColumnDataType ="bigint" , IsNullable = false )]
  22. public long WarehouseId { get; set; }
  23. /// <summary>
  24. /// 仓库编码
  25. /// </summary>
  26. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  27. public string WarehouseCode { get; set; }
  28. /// <summary>
  29. /// 垛型编码
  30. /// </summary>
  31. [SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = false )]
  32. public string Code { get; set; }
  33. /// <summary>
  34. /// 垛型名称
  35. /// </summary>
  36. [SugarColumn(ColumnDataType ="nvarchar" , Length = 100 , IsNullable = false )]
  37. public string Name { get; set; }
  38. /// <summary>
  39. /// BomId
  40. /// </summary>
  41. [SugarColumn(ColumnDataType ="bigint" , IsNullable = false )]
  42. public long BomId { get; set; }
  43. /// <summary>
  44. /// BomCode(投料信息)
  45. /// </summary>
  46. [SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = false )]
  47. public string BomCode { get; set; }
  48. /// <summary>
  49. /// 帘线物料id
  50. /// </summary>
  51. [SugarColumn(ColumnDataType ="bigint" , IsNullable = false )]
  52. public long PMatId { get; set; }
  53. /// <summary>
  54. /// 帘线物料编码
  55. /// </summary>
  56. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  57. public string PMatCode { get; set; }
  58. /// <summary>
  59. /// 工字轮个数
  60. /// </summary>
  61. [SugarColumn(ColumnDataType ="int" , IsNullable = false )]
  62. public int HWCountQty { get; set; }
  63. /// <summary>
  64. /// 托盘类型
  65. /// </summary>
  66. [SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = false )]
  67. public string TpTypeCode { get; set; }
  68. /// <summary>
  69. /// 层数
  70. /// </summary>
  71. [SugarColumn(ColumnDataType ="int" , IsNullable = false )]
  72. public int LayerCountQty { get; set; }
  73. }
  74. }