From 752223f279965b562e3d086b78f01efb55925ae4 Mon Sep 17 00:00:00 2001 From: yanjinhui <3306209981@qq.com> Date: 星期三, 30 四月 2025 16:32:23 +0800 Subject: [PATCH] 11 --- project/后台管理/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/Telescopic/ParametersController.cs | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/Telescopic/ParametersController.cs" "b/project/\345\220\216\345\217\260\347\256\241\347\220\206/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/Telescopic/ParametersController.cs" similarity index 90% 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" index 8bae7ab..8c93625 100644 --- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/Telescopic/ParametersController.cs" +++ "b/project/\345\220\216\345\217\260\347\256\241\347\220\206/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); } } } -- Gitblit v1.9.3