From 26dbfbfc18fe54c9f36121111275300a7c102be7 Mon Sep 17 00:00:00 2001
From: dengjunjie <dengjunjie@hnkhzn.com>
Date: 星期日, 26 十月 2025 13:58:55 +0800
Subject: [PATCH] 添加报警通知信息

---
 新建文件夹/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/SquareCabin/CabinOrderController.cs |   23 +++++++++++++++++++----
 1 files changed, 19 insertions(+), 4 deletions(-)

diff --git "a/\346\226\260\345\273\272\346\226\207\344\273\266\345\244\271/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/SquareCabin/CabinOrderController.cs" "b/\346\226\260\345\273\272\346\226\207\344\273\266\345\244\271/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/SquareCabin/CabinOrderController.cs"
index 28b69d4..43bade7 100644
--- "a/\346\226\260\345\273\272\346\226\207\344\273\266\345\244\271/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/SquareCabin/CabinOrderController.cs"
+++ "b/\346\226\260\345\273\272\346\226\207\344\273\266\345\244\271/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/SquareCabin/CabinOrderController.cs"
@@ -16,14 +16,29 @@
         {
         }
 
-
-        [HttpPost,Route("GetUpstreamOrder"),AllowAnonymous]
-        public WebResponseContent GetUpstreamOrder()
+        /// 鏌ヨ鍗曚俊鎭�
+        /// </summary>
+        /// <returns></returns>
+        [HttpPost, HttpGet, Route("GetCabinOrders")]
+        public WebResponseContent GetCabinOrders([FromBody] SaveModel saveModel)
         {
-            return Service.GetUpstreamOrder();
+            return Service.GetCabinOrders(saveModel);
         }
 
+        /// 鏌ヨ鍗曡鎯呬俊鎭�
+        /// </summary>
+        /// <returns></returns>
+        [HttpPost, HttpGet, Route("GetCabinOrderDetail")]
+        public WebResponseContent GetCabinOrderDetail(int pageNo, string orderNo)
+        {
+            return Service.GetCabinOrderDetail(pageNo,orderNo);
+        }
 
+        [HttpPost, HttpGet, Route("FeedbackIn")]
+        public WebResponseContent FeedbackIn([FromBody] SaveModel saveModel)
+        {
+            return Service.FeedbackIn(saveModel);
+        }
         //[HttpPost, Route("CompleteOrder"), AllowAnonymous]
         //public WebResponseContent CompleteOrder(string order_no)
         //{

--
Gitblit v1.9.3