BillBomsetinfo.cs 4.0 KB

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