BillBomsetinfo.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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_BomSetInfo")]
  9. public partial class BillBomsetinfo : BaseModel
  10. {
  11. /// <summary>
  12. /// 主表id(垛型id)
  13. /// </summary>
  14. [SugarColumn(ColumnDataType = "bigint", IsNullable = false, ColumnDescription = "主表id")]
  15. public long BomSetHdrId { get; set; }
  16. /// <summary>
  17. /// 是否停用
  18. /// </summary>
  19. [SugarColumn(ColumnDataType = "int", IsNullable = false)]
  20. public int IsStop { get; set; }
  21. /// <summary>
  22. /// 有/无
  23. /// </summary>
  24. [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "有/无")]
  25. public int IsEmpty { get; set; }
  26. /// <summary>
  27. /// 坐标号(1-60的编号)
  28. /// </summary>
  29. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false, ColumnDescription = "1-60的编号")]
  30. public string XYNo { get; set; }
  31. /// <summary>
  32. /// 09垛型里面的行(1-12)
  33. /// </summary>
  34. [SugarColumn(ColumnDataType = "int", IsNullable = true, ColumnDescription = "行")]
  35. public int? Row { get; set; }
  36. /// <summary>
  37. /// 物料编码
  38. /// </summary>
  39. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true, ColumnDescription = "物料编码")]
  40. public string MatCode { get; set; }
  41. /// <summary>
  42. /// 物料Id
  43. /// </summary>
  44. [SugarColumn(ColumnDataType = "bigint", IsNullable = false, ColumnDescription = "物料Id")]
  45. public long MatId { get; set; }
  46. /// <summary>
  47. /// 正/反面
  48. /// </summary>
  49. [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "正/反面")]
  50. public int SideNum { get; set; }
  51. /// <summary>
  52. /// 工字轮型号
  53. /// </summary>
  54. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true, ColumnDescription = "工字轮型号")]
  55. public string SpoolType { get; set; }
  56. /// <summary>
  57. /// 钢丝类型(单/双丝)
  58. /// </summary>
  59. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false, ColumnDescription = "单/双丝")]
  60. public string SilkType { get; set; }
  61. /// <summary>
  62. /// 钢丝直径
  63. /// </summary>
  64. [SugarColumn(ColumnDataType = "decimal", Length = 18, IsNullable = false, ColumnDescription = "钢丝直径")]
  65. public decimal SilkDiam { get; set; }
  66. /// <summary>
  67. /// 钢丝直径上限
  68. /// </summary>
  69. [SugarColumn(ColumnDataType = "int", IsNullable = true, ColumnDescription = "钢丝直径上限")]
  70. public int SilkDiamMaxCount { get; set; }
  71. /// <summary>
  72. /// 数量上限
  73. /// </summary>
  74. [SugarColumn(ColumnDataType = "int", IsNullable = true, ColumnDescription = "数量上限")]
  75. public int QtyMaxCount { get; set; }
  76. /// <summary>
  77. /// 是否芯股
  78. /// </summary>
  79. [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "是否芯股")]
  80. public int IsCore { get; set; }
  81. /// <summary>
  82. /// 是否混合料行(09垛型使用,1是0否)
  83. /// </summary>
  84. [SugarColumn(ColumnDataType = "int", IsNullable = false)]
  85. public int IsMixRow { get; set; }
  86. /// <summary>
  87. /// 混合料行编码
  88. /// </summary>
  89. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true, ColumnDescription = "混合料行编码")]
  90. public string MixRowCode { get; set; }
  91. /// <summary>
  92. /// 第一种第二种第三种
  93. /// </summary>
  94. [SugarColumn(ColumnDataType = "int", IsNullable = true, ColumnDescription = "第一种第二种第三种")]
  95. public int? CategoryId { get; set; }
  96. }
  97. }