From 5b84275a7ce63b83c778c5ac050b8c039cd4fac8 Mon Sep 17 00:00:00 2001
From: yl <ykxkd@outlook.com>
Date: 星期二, 06 八月 2024 17:46:25 +0800
Subject: [PATCH] 1.修改接口:UpdateMesOrderStepSearch   --工单派发 2.修改接口:MesOrderNewStepContent   --工单派发 3.修改接口:RouteSelectStep--工单派发 4.新增组织架构类型接口:TOrganTypeDate 5.新增组织架构车间接口:TorgWkshop 6.新增车间查找设备接口:WkshopEqpPermissions 7.新增往来单位基础资料接口:CustomerTypePermissions 8.新增往来单位类型查找往来单位资料接口:CustomerTypeSearchPermissions 9.新增工序关联工作站接口 10.修改工序工价提交接口(增加了设备)

---
 VueWebCoreApi/DLL/BLL/SopManageMentBLL.cs |   34 +++++++++++++++++++++++++++++++---
 1 files changed, 31 insertions(+), 3 deletions(-)

diff --git a/VueWebCoreApi/DLL/BLL/SopManageMentBLL.cs b/VueWebCoreApi/DLL/BLL/SopManageMentBLL.cs
index f83cb60..03aaa09 100644
--- a/VueWebCoreApi/DLL/BLL/SopManageMentBLL.cs
+++ b/VueWebCoreApi/DLL/BLL/SopManageMentBLL.cs
@@ -41,7 +41,6 @@
         }
         #endregion
 
-
         #region[绯荤粺璁剧疆,宸ヨ壓SOP涓婁紶鑾峰彇鏈�澶х増鏈彿]
         public static ToMessage ProcessSopMaxVersion(string partcode, string routecode, string stepcode, string filetypecode, User us)
         {
@@ -49,18 +48,47 @@
         }
         #endregion
 
-        #region[绯荤粺璁剧疆,璁惧SOP鏂板]
+        #region[绯荤粺璁剧疆,宸ヨ壓SOP鏂板]
         public static ToMessage ProcessSopAddSeave(string partcode, string routecode, string stepcode, string filename, string filetypecode,string version, IFormFile file, User us)
         {
             return SopManageMentDAL.ProcessSopAddSeave(partcode, routecode, stepcode, filename, filetypecode, version, file, us);
         }
         #endregion
 
-        #region[绯荤粺璁剧疆,璁惧SOP鍒犻櫎]
+        #region[绯荤粺璁剧疆,宸ヨ壓SOP鍒犻櫎]
         public static ToMessage ProcessSopDeleteSeave(string id, string partcode,string routecode,string stepcode, string filepath, User us)
         {
             return SopManageMentDAL.ProcessSopDeleteSeave(id, partcode, routecode, stepcode, filepath, us);
         }
         #endregion
+
+
+        #region[绯荤粺璁剧疆,宸ュ崟SOP鏌ヨ]
+        public static ToMessage WrkOrderSearch(string search, string check, int startNum, int endNum, string prop, string order)
+        {
+            return SopManageMentDAL.WrkOrderSearch(search, check, startNum, endNum, prop, order);
+        }
+        #endregion
+
+        #region[绯荤粺璁剧疆,宸ュ崟SOP涓婁紶鑾峰彇鏈�澶х増鏈彿]
+        public static ToMessage WrkOrderSopMaxVersion(string wocode, string partcode, string filetypecode, User us)
+        {
+            return SopManageMentDAL.WrkOrderSopMaxVersion(wocode, partcode, filetypecode, us);
+        }
+        #endregion
+
+        #region[绯荤粺璁剧疆,宸ュ崟SOP鏂板]
+        public static ToMessage WrkOrderSopAddSeave(string wocode, string partcode, string filename, string filetypecode, string version, IFormFile file, User us)
+        {
+            return SopManageMentDAL.WrkOrderSopAddSeave(wocode, partcode, filename, filetypecode, version, file, us);
+        }
+        #endregion
+
+        #region[绯荤粺璁剧疆,宸ュ崟SOP鍒犻櫎]
+        public static ToMessage WrkOrderSopDeleteSeave(string id, string wocode, string partcode, string filepath, User us)
+        {
+            return SopManageMentDAL.WrkOrderSopDeleteSeave(id, wocode, partcode, filepath, us);
+        }
+        #endregion
     }
 }

--
Gitblit v1.9.3