11
yanjinhui
2025-04-30 752223f279965b562e3d086b78f01efb55925ae4
project/后台管理/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/Telescopic/ParametersController.cs
copy from "\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/Telescopic/ParametersController.cs" copy to "project/\345\220\216\345\217\260\347\256\241\347\220\206/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);
        }
    }
}