From 644cbe3e4eba765affa25454d69fee6286bb6094 Mon Sep 17 00:00:00 2001
From: huangxiaoqiang <huangxiaoqiang@hnkhzn.com>
Date: 星期四, 30 十月 2025 13:06:35 +0800
Subject: [PATCH] 1

---
 项目代码/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Basic/BoxingInfoController.cs |   30 ++++++++++++++++++++++--------
 1 files changed, 22 insertions(+), 8 deletions(-)

diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Basic/BoxingInfoController.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Basic/BoxingInfoController.cs"
index 0836c6a..8c351c0 100644
--- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Basic/BoxingInfoController.cs"
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Basic/BoxingInfoController.cs"
@@ -9,17 +9,31 @@
     public BoxingInfoController(IBoxingInfoService service) : base(service)
     {
     }
-
-    // POST api/<BoxingInfoController>
-    [HttpPost,HttpGet, Route("AddBoxingInfo"), AllowAnonymous]
-    public Task<WebResponseContent> AddBoxingInfoAsync([FromBody] AddBoxingDto boxingInfo)
+    /// <summary>
+    /// 缁勭洏
+    /// </summary>
+    /// <param name="groupPlate"></param>
+    /// <returns></returns>
+    [HttpPost, HttpGet, Route("AddGroupPlateAsync"), AllowAnonymous]
+    public Task<WebResponseContent> AddGroupPlateAsync([FromBody] GroupPlate groupPlate)
     {
-        return Service.AddBoxingInfoAsync(boxingInfo);
+        return Service.AddGroupPlateAsync(groupPlate);
     }
 
-    [HttpPost, HttpGet, Route("DeleteBoxingInfoAsync"), AllowAnonymous]
-    public Task<WebResponseContent> DeleteBoxingInfoAsync([FromBody] AddBoxingDto boxingInfo)
+    [HttpPost, HttpGet, Route("GetPalletCodeInfo"), AllowAnonymous]
+    public Task<WebResponseContent> GetPalletCodeInfo(string palletCode)
     {
-        return Service.DeleteBoxingInfoAsync(boxingInfo);
+        return Service.GetPalletCodeInfo(palletCode);
+    }
+
+    /// <summary>
+    /// 瑙g洏
+    /// </summary>
+    /// <param name="groupPlate"></param>
+    /// <returns></returns>
+    [HttpPost, HttpGet, Route("DeleteGroupPlateAsync"), AllowAnonymous]
+    public async Task<WebResponseContent> DeleteGroupPlateAsync([FromBody] GroupPlate groupPlate)
+    {
+        return await Service.DeleteGroupPlateAsync(groupPlate);
     }
 }
\ No newline at end of file

--
Gitblit v1.9.3