From 2d2d6bf8565f5b89fc9ee054bf6e62f9592f8673 Mon Sep 17 00:00:00 2001 From: huangxiaoqiang <huangxiaoqiang@hnkhzn.com> Date: 星期一, 23 六月 2025 08:37:37 +0800 Subject: [PATCH] 1 --- 项目代码/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/Task/TaskController.cs | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 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..5021626 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" @@ -1,6 +1,7 @@ 锘縰sing Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; +using System.Diagnostics.CodeAnalysis; using WIDESEAWCS_Core; using WIDESEAWCS_Core.BaseController; using WIDESEAWCS_DTO.TaskInfo; @@ -19,11 +20,16 @@ _httpContextAccessor = httpContextAccessor; } - [HttpPost, Route("ReceiveTask"), AllowAnonymous] - public WebResponseContent ReceiveWMSTask(Dt_Task taskDTOs) + [HttpPost, HttpGet, Route("ReceiveTask"), AllowAnonymous] + public WebResponseContent ReceiveWMSTask([FromBody] List<Dt_Task> taskDTOs) { return Service.ReceiveWMSTask(taskDTOs); } + [HttpPost, HttpGet, Route("AddTask"), AllowAnonymous] + public WebResponseContent AddTask([FromBody] WMSTaskDTO WMSDTO) + { + return Service.AddTask(WMSDTO); + } [HttpPost, HttpGet, Route("UpdateTaskExceptionMessage")] public WebResponseContent UpdateTaskExceptionMessage(int taskNum, string message) -- Gitblit v1.9.3