RobotBrand.cs 643 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace TeamAAS.Robot.Enums
  8. {
  9. /// <summary>
  10. /// 机器人品牌
  11. /// </summary>
  12. public enum RobotBrand
  13. {
  14. [Description("默认")]
  15. Default = 0,
  16. [Description("爱普生")]
  17. EPSON = 1,
  18. [Description("发那科")]
  19. FANUC =2,
  20. [Description("施耐德")]
  21. Schneider =3,
  22. [Description("XYZ模组平台")]
  23. XYZ_Platform = 11,
  24. [Description("XYZU模组平台")]
  25. XYZU_Platform = 12,
  26. }
  27. }