BillBominfo.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. using SqlSugar;
  2. namespace wms.sqlsugar.model.fj
  3. {
  4. /// <summary>
  5. /// 投料信息表
  6. /// </summary>
  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 = 200, IsNullable = false)]
  20. public string ProCode { get; set; }
  21. /// <summary>
  22. /// 编码
  23. /// </summary>
  24. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  25. public string Code { get; set; }
  26. /// <summary>
  27. /// 名称
  28. /// </summary>
  29. [SugarColumn(ColumnDataType = "nvarchar", Length = 500, 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. /// 是否停用
  53. /// </summary>
  54. [SugarColumn(ColumnDataType = "int", IsNullable = true)]
  55. public int IsDelete { get; set; }
  56. }
  57. }