BillBomsetgrp.cs 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. using System;
  2. using System.Collections.Generic;
  3. using SqlSugar;
  4. using WMS.BZModels;
  5. namespace wms.sqlsugar.model.hj
  6. {
  7. [Tenant("hj")]
  8. [SugarTable("Bill_BomSetGrp")]
  9. public partial class BillBomsetgrp : BaseModel
  10. {
  11. /// <summary>
  12. /// IsStop
  13. /// </summary>
  14. [SugarColumn(ColumnDataType = "int", IsNullable = false)]
  15. public int IsStop { get; set; }
  16. /// <summary>
  17. /// WarehouseId
  18. /// </summary>
  19. [SugarColumn(ColumnDataType = "bigint", IsNullable = false)]
  20. public long WarehouseId { get; set; }
  21. /// <summary>
  22. /// Code
  23. /// </summary>
  24. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  25. public string Code { get; set; }
  26. /// <summary>
  27. /// Name
  28. /// </summary>
  29. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false)]
  30. public string Name { get; set; }
  31. /// <summary>
  32. /// BomId
  33. /// </summary>
  34. [SugarColumn(ColumnDataType = "bigint", IsNullable = false)]
  35. public long BomId { get; set; }
  36. /// <summary>
  37. /// BomCode
  38. /// </summary>
  39. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  40. public string BomCode { get; set; }
  41. /// <summary>
  42. /// PMatId
  43. /// </summary>
  44. [SugarColumn(ColumnDataType = "bigint", IsNullable = false)]
  45. public long PMatId { get; set; }
  46. /// <summary>
  47. /// HWCountQty
  48. /// </summary>
  49. [SugarColumn(ColumnDataType = "int", IsNullable = false)]
  50. public int HWCountQty { get; set; }
  51. /// <summary>
  52. /// TpTypeCode
  53. /// </summary>
  54. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  55. public string TpTypeCode { get; set; }
  56. /// <summary>
  57. /// LayerCountQty
  58. /// </summary>
  59. [SugarColumn(ColumnDataType = "int", IsNullable = false)]
  60. public int LayerCountQty { get; set; }
  61. /// <summary>
  62. /// Default1
  63. /// </summary>
  64. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
  65. public string Default1 { get; set; }
  66. /// <summary>
  67. /// Default2
  68. /// </summary>
  69. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
  70. public string Default2 { get; set; }
  71. /// <summary>
  72. /// Default3
  73. /// </summary>
  74. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
  75. public string Default3 { get; set; }
  76. }
  77. }