wanshenmean
2026-02-09 ae9517420d848e215a9eb807270d5ef6fbe92ae9
Code/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskInfo/TaskController.cs
@@ -22,5 +22,16 @@
        {
        }
        /// <summary>
        /// 创建入库任务
        /// </summary>
        /// <param name="taskDto"></param>
        /// <returns></returns>
        public WebResponseContent CreateTaskInboundAsync(CreateTaskDto taskDto)
        {
            WebResponseContent content = new WebResponseContent();
            content.Data = Service.CreateTaskInboundAsync(taskDto);
            return content;
        }
    }
}