From b2e04d15e8284aa23af89200075b6fd52a77477e Mon Sep 17 00:00:00 2001 From: z8018 <1282578289@qq.com> Date: 星期四, 08 五月 2025 14:50:36 +0800 Subject: [PATCH] 1 --- project/后台管理/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/Telescopic/ParametersController.cs | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git "a/project/\345\220\216\345\217\260\347\256\241\347\220\206/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" index 8c93625..1af844f 100644 --- "a/project/\345\220\216\345\217\260\347\256\241\347\220\206/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, string account) + public WebResponseContent ManualOperation(string position, string ExtendedState, int DeptId) { - return Service.ManualOperation(position, ExtendedState, account); + return Service.ManualOperation(position, ExtendedState, DeptId); } /// <summary> @@ -37,9 +37,9 @@ /// <returns></returns> [HttpPost,Route("automation"),AllowAnonymous] - public WebResponseContent automation(string ExtendedState, string account) + public WebResponseContent automation(string ExtendedState) { - return Service.automation(ExtendedState, account); + return Service.automation(ExtendedState); } } } -- Gitblit v1.9.3