From ae9517420d848e215a9eb807270d5ef6fbe92ae9 Mon Sep 17 00:00:00 2001
From: wanshenmean <cathay_xy@163.com>
Date: 星期一, 09 二月 2026 09:43:44 +0800
Subject: [PATCH] 添加 CreateTaskDto 和任务创建存根
---
Code/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskInfo/TaskController.cs | 11 +++++++++++
1 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/Code/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskInfo/TaskController.cs b/Code/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskInfo/TaskController.cs
index dcc27d0..350f7ee 100644
--- a/Code/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskInfo/TaskController.cs
+++ b/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;
+ }
}
}
--
Gitblit v1.9.3