BillBominfo.cs 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. using System;
  2. using System.Collections.Generic;
  3. using SqlSugar;
  4. namespace wms.sqlsugar.model.fj
  5. {
  6. /// <summary>
  7. /// 投料信息表
  8. /// </summary>
  9. [Tenant("fj")]
  10. [SugarTable("Bill_BomInfo")]
  11. public partial class BillBominfo : BaseModel
  12. {
  13. /// <summary>
  14. /// 是否停用
  15. /// </summary>
  16. [SugarColumn(ColumnDataType ="int" , IsNullable = false )]
  17. public int IsStop { get; set; }
  18. /// <summary>
  19. /// 仓库id
  20. /// </summary>
  21. [SugarColumn(ColumnDataType ="bigint" , IsNullable = false )]
  22. public long WarehouseId { get; set; }
  23. /// <summary>
  24. /// 编码
  25. /// </summary>
  26. [SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = false )]
  27. public string Code { get; set; }
  28. /// <summary>
  29. /// 名称
  30. /// </summary>
  31. [SugarColumn(ColumnDataType ="nvarchar" , Length = 100 , IsNullable = false )]
  32. public string Name { get; set; }
  33. /// <summary>
  34. /// 湿拉物料id
  35. /// </summary>
  36. [SugarColumn(ColumnDataType ="bigint" , IsNullable = false)]
  37. public long MatId { get; set; }
  38. /// <summary>
  39. /// 湿拉物料编码
  40. /// </summary>
  41. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  42. public string MatCode { get; set; }
  43. /// <summary>
  44. /// 工字轮个数
  45. /// </summary>
  46. [SugarColumn(ColumnDataType ="int" , IsNullable = false )]
  47. public int HWCountQty { get; set; }
  48. /// <summary>
  49. /// 帘线工序工单号
  50. /// </summary>
  51. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  52. public string BillCode { get; set; }
  53. /// <summary>
  54. /// 垛型id
  55. /// </summary>
  56. [SugarColumn(ColumnDataType = "bigint", IsNullable = false)]
  57. public long StackGrpId { get; set; }
  58. }
  59. }