fjBillBomInfo.cs 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace wms.sqlsugar.model.fj
  6. {
  7. [Tenant("fj")]
  8. [SugarTable("bill_bom_info", "BOM信息表")]
  9. public class fjBillBomInfo : BaseModel
  10. {
  11. /// <summary>
  12. /// BOM编码
  13. /// </summary>
  14. [SugarColumn(ColumnName = "bom_code", ColumnDataType = "nvarchar", Length = 50)]
  15. public string BomCode { get; set; }
  16. /// <summary>
  17. /// 帘线物料编码
  18. /// </summary>
  19. [SugarColumn(ColumnName = "pro_mat_code", ColumnDataType = "nvarchar", Length = 50)]
  20. public string ProMatCode { get; set; }
  21. /// <summary>
  22. /// 湿拉物料编码
  23. /// </summary>
  24. [SugarColumn(ColumnName = "mater_code", ColumnDataType = "nvarchar", Length = 100)]
  25. public string MaterCode { get; set; }
  26. /// <summary>
  27. /// 轮子个数
  28. /// </summary>
  29. [SugarColumn(ColumnName = "hw_count")]
  30. public int HWCount { get; set; }
  31. }
  32. }