wankeda
2025-04-15 9bae33c85d698987a6c9cf8ba8edbe9497b101dc
代码管理/NEWCode/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/PDA/PDAController.cs
@@ -39,9 +39,15 @@
        }
        [HttpPost, Route("AddCZTask"), AllowAnonymous]
        public WebResponseContent AddCZTask([FromBody] CZTaskDto czTaskDto)
        public Task<WebResponseContent> AddCZTask([FromBody] CZTaskDto czTaskDto)
        {
            return WebResponseContent.Instance.OK();
            return _taskCZService.AddTaskCZAsync(czTaskDto);
        }
        [HttpPost, Route("EmptyTask"), AllowAnonymous]
        public Task<WebResponseContent> EmptyTask([FromBody] SaveModel saveModel)
        {
            return _taskCZService.EmptyTask(saveModel);
        }
    }
}