dengjunjie
2025-06-26 6d9829c889a826d39cbc911ef5d01825edd1bffc
项目代码/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/Task/TaskController.cs
@@ -25,6 +25,18 @@
        {
            return Service.ReceiveWMSTask(taskDTOs);
        }
        [HttpPost, Route("ModifyBarcode"), AllowAnonymous]
        public WebResponseContent ModifyBarcode([FromBody] WMSTaskDTO taskDTO)
        {
            return Service.ModifyBarcode(taskDTO);
        }
        [HttpPost, Route("ManualTask"), AllowAnonymous]
        public WebResponseContent ManualTask(int TaskId, int TaskType)
        {
            return Service.ManualTask(TaskId, TaskType);
        }
        [HttpPost, HttpGet, Route("UpdateTaskExceptionMessage")]
        public WebResponseContent UpdateTaskExceptionMessage(int taskNum, string message)