BillBominfo.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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_BomInfo")]
  9. public partial class BillBominfo : BaseModel
  10. {
  11. /// <summary>
  12. /// 是否停用
  13. /// </summary>
  14. [SugarColumn(ColumnDataType = "int", IsNullable = false)]
  15. public int IsStop { get; set; }
  16. /// <summary>
  17. /// 编码
  18. /// </summary>
  19. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  20. public string Code { get; set; }
  21. /// <summary>
  22. ///
  23. /// </summary>
  24. [SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = false)]
  25. public string ProCode { get; set; }
  26. /// <summary>
  27. /// 名称
  28. /// </summary>
  29. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false)]
  30. public string Name { get; set; }
  31. /// <summary>
  32. /// 湿拉物料id
  33. /// </summary>
  34. [SugarColumn(ColumnDataType = "bigint", IsNullable = false)]
  35. public long MatId { get; set; }
  36. /// <summary>
  37. /// 湿拉物料编码
  38. /// </summary>
  39. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  40. public string MatCode { get; set; }
  41. /// <summary>
  42. /// 工字轮配比
  43. /// </summary>
  44. [SugarColumn(ColumnDataType = "decimal", Length = 18, IsNullable = false)]
  45. public decimal HWCountQty { get; set; }
  46. /// <summary>
  47. /// 帘线物料编码
  48. /// </summary>
  49. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  50. public string ProMatCode { get; set; }
  51. /// <summary>
  52. /// IsDelete
  53. /// </summary>
  54. [SugarColumn(ColumnDataType = "int", IsNullable = true)]
  55. public int? IsDelete { get; set; }
  56. }
  57. }