From f4c3f82a3bd142bc555ec7f632dabc66ef86f5af Mon Sep 17 00:00:00 2001
From: huanghongfeng <huanghongfeng@hnkhzn.com>
Date: 星期二, 19 八月 2025 16:51:45 +0800
Subject: [PATCH] 11
---
项目代码/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Task_HtyController.cs | 35 +++++++++++++++++++++++++++++++++++
1 files changed, 35 insertions(+), 0 deletions(-)
diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Task_HtyController.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Task_HtyController.cs"
index f09779a..52d7554 100644
--- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Task_HtyController.cs"
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Task_HtyController.cs"
@@ -23,4 +23,39 @@
_locationService = locationService;
}
+
+ /// <summary>
+ /// 妫�鏌ユ槸鍚﹂渶瑕佽繘琛岀Щ搴�
+ /// </summary>
+ /// <param name="taskNum">浠诲姟鍙�</param>
+ /// <returns>浠诲姟</returns>
+ [HttpPost, Route("TransferCheckAsync"), AllowAnonymous]
+ public async Task<WebResponseContent> TransferCheckAsync([FromBody] RequestTaskDto input)
+ {
+ return new WebResponseContent().OK(data: await _locationService.TransferCheckAsync(input));
+ }
+
+ /// <summary>
+ /// 妫�鏌ュ叆搴撲换鍔℃槸鍚﹂渶瑕佽繘琛岀Щ搴�
+ /// </summary>
+ /// <param name="taskNum">浠诲姟鍙�</param>
+ /// <returns>浠诲姟</returns>
+ [HttpPost, Route("InTransferCheckAsync"), AllowAnonymous]
+ public async Task<WebResponseContent> InTransferCheckAsync([FromBody] RequestTaskDto input)
+ {
+ return new WebResponseContent().OK(data: await _locationService.InTransferCheckAsync(input));
+ }
+
+
+ /// <summary>
+ /// 鍘嗗彶浠诲姟鍥炴粴
+ /// </summary>
+ /// <param name="input">璇锋眰鏁版嵁</param>
+ /// <returns></returns>
+ [HttpGet, AllowAnonymous, Route("TaskRollback")]
+ public WebResponseContent TaskRollback(int input)
+ {
+ return _task_HtyService.TaskRollback(input);
+ }
+
}
\ No newline at end of file
--
Gitblit v1.9.3