yanjinhui
2025-05-27 f1a841f056fe4d7be16f39d6fe169667f743d00a
project/ºǫ́¹ÜÀí/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/Telescopic/ParametersController.cs
@@ -41,5 +41,29 @@
        {
            return Service.automation(ExtendedState);
        }
        /// <summary>
        ///当自动伸出需要暂停时,暂停按钮
        /// </summary>
        /// <returns></returns>
        [HttpPost, Route("PauseButton"), AllowAnonymous]
        public WebResponseContent PauseButton(int deptid)
        {
            return Service.PauseButton(deptid);
        }
        /// <summary>
        /// ä¼¸ç¼©æ†å½“前位置
        /// <param name="deptid">轨道站号</param>
        /// <returns></returns>
        [HttpPost, Route("CurrentLocation"), AllowAnonymous]
        public WebResponseContent CurrentLocation(int deptid)
        {
            return Service.CurrentLocation(deptid);
        }
    }
}