BillBomsetgrp.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. using System;
  2. using System.Collections.Generic;
  3. using SqlSugar;
  4. namespace wms.sqlsugar.model.fj
  5. {
  6. [Tenant("fj")]
  7. [SugarTable("Bill_BomSetGrp")]
  8. public partial class BillBomsetgrp : BaseModel
  9. {
  10. /// <summary>
  11. /// IsStop
  12. /// </summary>
  13. [SugarColumn(ColumnDataType ="int" , IsNullable = false )]
  14. public int IsStop { get; set; }
  15. /// <summary>
  16. /// 垛型编码
  17. /// </summary>
  18. [SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = false )]
  19. public string Code { get; set; }
  20. /// <summary>
  21. /// 垛型名称
  22. /// </summary>
  23. [SugarColumn(ColumnDataType ="nvarchar" , Length = 100 , IsNullable = false )]
  24. public string Name { get; set; }
  25. /// <summary>
  26. /// BomCode(投料信息)
  27. /// </summary>
  28. [SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = false )]
  29. public string BomCode { get; set; }
  30. /// <summary>
  31. /// 帘线物料编码
  32. /// </summary>
  33. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  34. public string ProMaterCode { get; set; }
  35. /// <summary>
  36. /// 工字轮个数
  37. /// </summary>
  38. [SugarColumn(ColumnDataType ="int" , IsNullable = false )]
  39. public int HWCountQty { get; set; }
  40. /// <summary>
  41. /// 托盘类型
  42. /// </summary>
  43. [SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = false )]
  44. public string TpTypeCode { get; set; }
  45. /// <summary>
  46. /// 层数
  47. /// </summary>
  48. [SugarColumn(ColumnDataType ="int" , IsNullable = false )]
  49. public int LayerCountQty { get; set; }
  50. /// <summary>
  51. /// 类型
  52. /// </summary>
  53. [SugarColumn(ColumnDataType = "int", IsNullable = false)]
  54. public int StampType { get; set; }
  55. }
  56. }