yanjinhui
2025-04-03 2623a84ddaeb38f5c8c6234a24980302b1ec550b
ÏîÄ¿´úÂë/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/Telescopic/MaintenanceController.cs
@@ -23,17 +23,10 @@
        /// æŸ¥çœ‹æ£€ä¿®ç®¡ç†
        /// </summary>
        /// <returns></returns>
<<<<<<< Updated upstream
        [HttpGet,Route("ShowMaintence"),AllowAnonymous]
        public WebResponseContent ShowMaintence()
        {
            return Service.ShowMaintence();
=======
        [HttpPost,Route("ShowMaintence"),AllowAnonymous]
        public WebResponseContent ShowMaintence([FromBody] PaginationDTO pagination)
        {
            return Service.ShowMaintence(pagination);
>>>>>>> Stashed changes
        }
        /// <summary>
@@ -41,15 +34,9 @@
        /// </summary>
        /// <returns></returns>
        [HttpPost, Route("PersonnelMonitoring"), AllowAnonymous]
<<<<<<< Updated upstream
        public WebResponseContent PersonnelMonitoring(bool ispossible)
        {
            return Service.PersonnelMonitoring(ispossible);
=======
        public WebResponseContent PersonnelMonitoring([FromBody] PaginationDTO pagination)
        {
            return Service.PersonnelMonitoring(pagination);
>>>>>>> Stashed changes
        }
@@ -59,9 +46,9 @@
        /// <param name="id"></param>
        /// <returns></returns>
        [HttpPost,Route("RunOperation"), AllowAnonymous]
        public WebResponseContent RunOperation(int id)
        public WebResponseContent RunOperation(int id, string ispossible)
        {
            return Service.RunOperation(id);
            return Service.RunOperation(id,ispossible);
        }
        /// <summary>
@@ -74,8 +61,6 @@
        {
            return Service.ChangeTasState(id);
        }
<<<<<<< Updated upstream
=======
        /// <summary>
@@ -87,6 +72,5 @@
        {
            return Service.MaintenanceOperationRecord(pagination);
        }
>>>>>>> Stashed changes
    }
}