领胜LDS 键盘AOI检测项目
wells.liu
2020-07-06 d007fd8d64ff33a1edb960fa33cf2312a955d933
src/Bro.Common.Model/Model/MotionCardRelated.cs
@@ -208,11 +208,6 @@
        public string AxisName { get; set; }
        /// <summary>
        /// 运动模式
        /// </summary>
        public MotionMode MoveMode { get; set; }
        /// <summary>
        /// 当前位置
        /// </summary>
        public int CurPosition { get; set; }
@@ -225,16 +220,16 @@
        /// <summary>
        /// 当前速度参数
        /// </summary>
        public VelocityPara CurVelocityPara { get; set; }
        public double CurVelocity { get; set; }
        /// <summary>
        /// 规划速度参数
        /// </summary>
        public VelocityPara VelocityPara { get; set; }
        public double PrfVelocity { get; set; }
        public string GetDisplayText()
        {
            return $"轴{AxisIndex}:{AxisName}-{MoveMode.ToString()}-当前:{CurPosition}-规划:{Destination}";
            return $"轴{AxisIndex}:{AxisName}-当前:{CurPosition}-规划:{Destination}";
        }
    }