sxBillBomInfo.cs 819 B

12345678910111213141516171819202122232425262728
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace wms.sqlsugar.model.sx
  6. {
  7. [Tenant("sx")]
  8. [SugarTable("bill_bom_info", "BOM信息表")]
  9. public class sxBillBomInfo : 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 = "mater_code", ColumnDataType = "nvarchar", Length = 100)]
  20. public string MaterCode { get; set; }
  21. /// <summary>
  22. /// 轮子个数
  23. /// </summary>
  24. [SugarColumn(ColumnName = "hw_count")]
  25. public int HWCount { get; set; }
  26. }
  27. }