wanshenmean
2026-02-11 75f34e9ba2e8b249c96333f3d7936c8968e12ec7
Code/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskInfo/TaskController.cs
@@ -27,11 +27,9 @@
        /// </summary>
        /// <param name="taskDto"></param>
        /// <returns></returns>
        public WebResponseContent CreateTaskInboundAsync(CreateTaskDto taskDto)
        public async Task<WebResponseContent?> CreateTaskInboundAsync(CreateTaskDto taskDto)
        {
            WebResponseContent content = new WebResponseContent();
            content.Data = Service.CreateTaskInboundAsync(taskDto);
            return content;
            return await Service.CreateTaskInboundAsync(taskDto);
        }
    }
}