11
yanjinhui
2025-04-30 752223f279965b562e3d086b78f01efb55925ae4
project/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/Telescopic/ParametersController.cs
文件名从 项目代码/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/Telescopic/ParametersController.cs 修改
@@ -25,9 +25,9 @@
        /// <returns></returns>
        /// 
        [HttpPost,Route("ManualOperation"),AllowAnonymous]
        public  WebResponseContent ManualOperation(string position, string ExtendedState)
        public  WebResponseContent ManualOperation(string position, string ExtendedState, string account)
        {
            return Service.ManualOperation(position, ExtendedState);
            return Service.ManualOperation(position, ExtendedState, account);
        }
        /// <summary>
@@ -37,9 +37,9 @@
        /// <returns></returns>
        [HttpPost,Route("automation"),AllowAnonymous]
        public WebResponseContent automation(string ExtendedState)
        public WebResponseContent automation(string ExtendedState, string account)
        {
            return Service.automation(ExtendedState);
            return Service.automation(ExtendedState, account);
        }
    }
}