BillBomsetgrp.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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("Bill_BomSetGrp")]
  9. public partial class BillBomsetgrp : BaseModel
  10. {
  11. /// <summary>
  12. /// 是否停用
  13. /// </summary>
  14. [SugarColumn(ColumnDataType = "int", IsNullable = false)]
  15. public int IsStop { get; set; }
  16. /// <summary>
  17. /// IsDelete
  18. /// </summary>
  19. [SugarColumn(ColumnDataType = "int", IsNullable = false)]
  20. public int IsDelete { get; set; }
  21. /// <summary>
  22. /// 垛型编码
  23. /// </summary>
  24. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  25. public string Code { get; set; }
  26. /// <summary>
  27. /// 垛型名称
  28. /// </summary>
  29. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false)]
  30. public string Name { get; set; }
  31. /// <summary>
  32. /// 短垛型编码
  33. /// </summary>
  34. [SugarColumn(ColumnDataType = "smallint", IsNullable = false)]
  35. public int ShortCode { get; set; }
  36. /// <summary>
  37. /// 帘线物料编码
  38. /// </summary>
  39. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true, ColumnDescription = "帘线物料编码")]
  40. public string ProMaterCode { get; set; }
  41. /// <summary>
  42. /// BomCode(投料信息)
  43. /// </summary>
  44. [SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = true, ColumnDescription = "投料物流编码")]
  45. public string ProCode { get; set; }
  46. /// <summary>
  47. ///
  48. /// </summary>
  49. [SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = false)]
  50. public string BomCode { get; set; }
  51. /// <summary>
  52. ///
  53. /// </summary>
  54. [SugarColumn(ColumnDataType = "nvarchar", Length = 500, IsNullable = false)]
  55. public string BomName { get; set; }
  56. /// <summary>
  57. /// 工字轮个数
  58. /// </summary>
  59. [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "工字轮个数")]
  60. public int HWCountQty { get; set; }
  61. /// <summary>
  62. /// 总工字轮个数
  63. /// </summary>
  64. [SugarColumn(ColumnDataType = "int", IsNullable = true)]
  65. public int TotalQty { get; set; }
  66. /// <summary>
  67. /// 托盘类型 1:09型托盘,2:非09托盘
  68. /// </summary>
  69. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false, ColumnDescription = "托盘类型")]
  70. public string TpTypeCode { get; set; }
  71. /// <summary>
  72. /// 类型 1A级品正常 2B级品 3异常
  73. /// </summary>
  74. [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "类型 1A级品正常 2B级品 3异常")]
  75. public int Category { get; set; }
  76. /// <summary>
  77. /// 层数
  78. /// </summary>
  79. [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "层数")]
  80. public int LayerCountQty { get; set; }
  81. /// <summary>
  82. /// 非业务相关(区分表单),记录类型DFM15 DFM9 DFM6 DOF2等类型的跺型
  83. /// </summary>
  84. [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "非业务相关,记录类型DFM15 DFM9 DFM6 DOF2等类型的跺型")]
  85. public int StampType { get; set; }
  86. /// <summary>
  87. /// 非业务相关(区分表单),记录类型 DFM6 DOF4等类型的子跺型
  88. /// </summary>
  89. [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "非业务相关,记录类型DFM15 DFM9 DFM6 DOF2等类型的跺型")]
  90. public int StampChildType { get; set; }
  91. /// <summary>
  92. /// IsTruss
  93. /// </summary>
  94. [SugarColumn(ColumnDataType = "bit", IsNullable = true)]
  95. public bool? IsTruss { get; set; }
  96. }
  97. }