wankeda
2025-05-26 0864509e1eb593c3dedb66196ec19fe51437922b
代码管理/NEWCode/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/PDA/PDAController.cs
@@ -43,5 +43,22 @@
        {
            return _taskCZService.AddTaskCZAsync(czTaskDto);
        }
        [HttpPost, Route("EmptyTask"), AllowAnonymous]
        public Task<WebResponseContent> EmptyTask([FromBody] SaveModel saveModel)
        {
            return _taskCZService.EmptyTask(saveModel);
        }
        [HttpPost, Route("OutBoundTask"), AllowAnonymous]
        public Task<WebResponseContent> OutBoundTask([FromBody] string sourceAddress)
        {
            return _taskCZService.OutBoundTask(sourceAddress);
        }
        [HttpPost, Route("OutBoundTasks"), AllowAnonymous]
        public Task<WebResponseContent> OutBoundTasks([FromBody] SaveModel saveModel)
        {
            return _taskCZService.OutBoundTasks(saveModel);
        }
    }
}