BillBomsetinfo.cs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. using SqlSugar;
  2. namespace WMS.BZModels.Models.KLHC
  3. {
  4. /// <summary>
  5. /// 垛型明细表
  6. /// </summary>
  7. [Tenant("klhc")]
  8. [SugarTable("Bill_BomSetInfo", tableDescription: "垛型明细表")]
  9. public partial class BillBomsetinfo : BaseModel
  10. {
  11. /// <summary>
  12. /// 垛型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, ColumnDescription = "是否停用")]
  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. /// 坐标号
  28. /// </summary>
  29. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false, ColumnDescription = "坐标号")]
  30. public string XYNo { get; set; }
  31. /// <summary>
  32. /// 物料id
  33. /// </summary>
  34. [SugarColumn(ColumnDataType = "bigint", ColumnDescription = "物料id")]
  35. public long MatId { get; set; }
  36. /// <summary>
  37. /// 物料编码
  38. /// </summary>
  39. [SugarColumn(ColumnDataType = "nvarchar", IsNullable = true, Length = 50, ColumnDescription = "物料编码")]
  40. public string MatCode { get; set; }
  41. /// <summary>
  42. /// 正反面
  43. /// </summary>
  44. [SugarColumn(ColumnDataType = "int", IsNullable = true, ColumnDescription = "正反面")]
  45. public int SideNum { get; set; }
  46. /// <summary>
  47. /// 工字轮类型
  48. /// </summary>
  49. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true, ColumnDescription = "工字轮类型")]
  50. public string SpoolType { get; set; }
  51. /// <summary>
  52. /// 钢丝类型
  53. /// </summary>
  54. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true, ColumnDescription = "钢丝类型")]
  55. public string SilkType { get; set; }
  56. /// <summary>
  57. /// 钢丝直径
  58. /// </summary>
  59. [SugarColumn(ColumnDataType = "decimal", Length = 18, IsNullable = true, ColumnDescription = "钢丝直径")]
  60. public decimal SilkDiam { get; set; }
  61. /// <summary>
  62. /// 钢丝直径上限
  63. /// </summary>
  64. [SugarColumn(ColumnDataType = "decimal", Length = 18, IsNullable = true, ColumnDescription = "钢丝直径上限")]
  65. public decimal SilkDiamMaxCount { get; set; }
  66. /// <summary>
  67. /// 数量上限
  68. /// </summary>
  69. [SugarColumn(ColumnDataType = "int", IsNullable = true, ColumnDescription = "数量上限")]
  70. public int QtyMaxCount { get; set; }
  71. /// <summary>
  72. /// 是否芯股
  73. /// </summary>
  74. [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "是否芯股")]
  75. public int IsCore { get; set; }
  76. /// <summary>
  77. /// 09垛型里面的行(1-12)
  78. /// </summary>
  79. [SugarColumn(ColumnDataType = "int", IsNullable = true, ColumnDescription = "09垛型里面的行(1-12)")]
  80. public int Row { get; set; }
  81. /// <summary>
  82. /// 是否混合料行(09垛型使用,1是0否)
  83. /// </summary>
  84. [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "是否混合料行(09垛型使用,1是0否)")]
  85. public int IsMixRow { get; set; }
  86. /// <summary>
  87. /// 混合料行编码
  88. /// </summary>
  89. [SugarColumn(ColumnDataType = "nvarchar", IsNullable = true, Length = 50, ColumnDescription = "混合料行编码")]
  90. public string MixRowCode { get; set; }
  91. /// <summary>
  92. /// 第一种第二种第三种
  93. /// </summary>
  94. [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "第一种第二种第三种")]
  95. public int CategoryId { get; set; }
  96. }
  97. }