using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Bro.Common.Base { /// /// 运动机构接口 具体由PLC/板卡实现 /// public interface IMotion { List GetCurrentAxisInfo(params string[] axisName); } public class AxisInfo { public string AxisName { get; set; } public float AxisLocation { get; set; } } }