111
yanjinhui
2025-03-28 2d4e07b5d61490d3c3cfeb398d3d6e4b6f8be9bb
ÏîÄ¿´úÂë/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/Telescopic/MaintenanceController.cs
@@ -3,6 +3,7 @@
using Microsoft.AspNetCore.Mvc;
using WIDESEAWCS_Core;
using WIDESEAWCS_Core.BaseController;
using WIDESEAWCS_DTO.Telescopic;
using WIDESEAWCS_ITelescopicService;
using WIDESEAWCS_IWMSPart;
using WIDESEAWCS_Model.Models;
@@ -22,10 +23,17 @@
        /// æŸ¥çœ‹æ£€ä¿®ç®¡ç†
        /// </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>
@@ -33,9 +41,15 @@
        /// </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
        }
@@ -60,5 +74,19 @@
        {
            return Service.ChangeTasState(id);
        }
<<<<<<< Updated upstream
=======
        /// <summary>
        /// æ£€ä¿®æ“ä½œè®°å½•
        /// </summary>
        /// <returns></returns>
        [HttpPost, Route("MaintenanceOperationRecord"), AllowAnonymous]
        public WebResponseContent MaintenanceOperationRecord([FromBody] PaginationDTO pagination)
        {
            return Service.MaintenanceOperationRecord(pagination);
        }
>>>>>>> Stashed changes
    }
}