SRMExtension.cs 413 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using WCS.Core;
  7. using WCS.Entity.Protocol.SRM;
  8. namespace WCS.WorkEngineering.Extensions
  9. {
  10. /// <summary>
  11. /// 堆垛机扩展
  12. /// </summary>
  13. public class SRM : Device<ISRM520, ISRM521, ISRM523>
  14. {
  15. public SRM(Device device) : base(device)
  16. {
  17. }
  18. }
  19. }