From b5dd6918e906b194f99b88d11ce343f457af19c3 Mon Sep 17 00:00:00 2001 From: z8018 <1282578289@qq.com> Date: 星期六, 05 四月 2025 13:44:55 +0800 Subject: [PATCH] 1 --- 项目代码/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/Task/TaskController.cs | 49 +------------------------------------------------ 1 files changed, 1 insertions(+), 48 deletions(-) diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/Task/TaskController.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/Task/TaskController.cs" index 8a84247..3668c2f 100644 --- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/Task/TaskController.cs" +++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/Task/TaskController.cs" @@ -19,53 +19,6 @@ _httpContextAccessor = httpContextAccessor; } - [HttpPost, Route("ReceiveTask"), AllowAnonymous] - public WebResponseContent ReceiveWMSTask(Dt_Task taskDTOs) - { - return Service.ReceiveWMSTask(taskDTOs); - } - - [HttpPost, HttpGet, Route("UpdateTaskExceptionMessage")] - public WebResponseContent UpdateTaskExceptionMessage(int taskNum, string message) - { - return Service.UpdateTaskExceptionMessage(taskNum, message); - } - - [HttpPost, HttpGet, Route("UpdateTaskStatusToNext")] - public WebResponseContent UpdateTaskStatusToNext(int taskNum) - { - return Service.UpdateTaskStatusToNext(taskNum); - } - - [HttpPost, HttpGet, Route("TaskStatusRecovery")] - public WebResponseContent TaskStatusRecovery(int taskNum) - { - return Service.TaskStatusRecovery(taskNum); - } - - [HttpPost, HttpGet, Route("RollbackTaskStatusToLast")] - public WebResponseContent RollbackTaskStatusToLast(int taskNum) - { - return Service.RollbackTaskStatusToLast(taskNum); - } - - [HttpGet, Route("GetAgvStatusData"), AllowAnonymous] - public WebResponseContent GetAgvStatusData() - { - return Service.GetAgvStatusData(); - } - - [HttpGet, Route("GetAgvStatusData2"), AllowAnonymous] - public WebResponseContent GetAgvStatusData2() - { - return Service.GetAgvStatusData2(); - } - - - [HttpGet, Route("GetAgvTaskData"), AllowAnonymous] - public WebResponseContent GetAgvTaskData() - { - return Service.GetAgvTaskData(); - } + } } -- Gitblit v1.9.3