12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using WCS.Core;
- using WCS.Entity.Protocol.SRM;
- namespace WCS.WorkEngineering.Extensions
- {
- /// <summary>
- /// 堆垛机扩展
- /// </summary>
- public class SRM : Device<ISRM520, ISRM521, ISRM523>
- {
- public SRM(Device device) : base(device)
- {
- }
- }
- }
|