yanjinhui
2025-05-20 c944d37fcf25d9c217949a171fde868078049f02
project/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/Telescopic/ParametersController.cs
@@ -63,5 +63,26 @@
        {
            return Service.BackfillSpeed();
        }
        /// <summary>
        ///当自动伸出需要暂停时,暂停按钮
        /// </summary>
        /// <returns></returns>
        [HttpPost, Route("PauseButton"), AllowAnonymous]
        public WebResponseContent PauseButton()
        {
            return Service.PauseButton();
        }
        /// <summary>
        /// 获取当前伸缩杆的位置
        /// </summary>
        /// <returns></returns>
        [HttpPost, Route("CurrentLocation"), AllowAnonymous]
        public WebResponseContent CurrentLocation()
        {
            return Service.CurrentLocation();
        }
    }
}