1
z8018
2025-05-08 b2e04d15e8284aa23af89200075b6fd52a77477e
project/后台管理/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);
        }
    }
}