FormulaPartType.cs 743 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace LocalhostMES.Enums
  7. {
  8. /// <summary>
  9. /// 配方站的类型
  10. /// </summary>
  11. public enum FormulaPartType
  12. {
  13. /// <summary>
  14. /// OP10配方
  15. /// </summary>
  16. OP10Formula = 0,
  17. /// <summary>
  18. /// OP2030配方
  19. /// </summary>
  20. OP203040Formula = 1,
  21. /// <summary>
  22. /// OP4050配方
  23. /// </summary>
  24. OP506070Formula = 2,
  25. /// <summary>
  26. /// OP80配方
  27. /// </summary>
  28. OP80Formula = 3,
  29. /// <summary>
  30. /// OP90配方
  31. /// </summary>
  32. OP90Formula = 4,
  33. }
  34. }