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/BasicSettingBLL.cs |   26 ++++++++++++++++++++------
 1 files changed, 20 insertions(+), 6 deletions(-)

diff --git a/VueWebCoreApi/DLL/BLL/BasicSettingBLL.cs b/VueWebCoreApi/DLL/BLL/BasicSettingBLL.cs
index 25d9447..29891fb 100644
--- a/VueWebCoreApi/DLL/BLL/BasicSettingBLL.cs
+++ b/VueWebCoreApi/DLL/BLL/BasicSettingBLL.cs
@@ -49,16 +49,16 @@
 
 
         #region[缁勭粐鏋舵瀯,鏌ヨ缁勭粐淇℃伅]
-        public static ToMessage STorgData(string storg_code, string storg_name)
+        public static ToMessage STorgData(string storg_code, string storg_name,string torgtype_code)
         {
-            return BasicSettingDAL.STorgData(storg_code, storg_name);
+            return BasicSettingDAL.STorgData(storg_code, storg_name, torgtype_code);
         }
         #endregion
 
         #region [缁勭粐鏋舵瀯鏂板缂栬緫]
-        public static ToMessage AddUpdateOrganization(string OrganCode, string OrganName, string leve, string parent_id,string storgcode, string torg_seq, string status, string OperType, User us)
+        public static ToMessage AddUpdateOrganization(string OrganCode, string OrganName, string leve, string parent_id,string storgcode,string torgtype_code, string torg_seq, string status, string OperType, User us)
         {
-            return BasicSettingDAL.AddUpdateOrganization(OrganCode, OrganName, leve, parent_id, storgcode, torg_seq, status, OperType, us);
+            return BasicSettingDAL.AddUpdateOrganization(OrganCode, OrganName, leve, parent_id, storgcode, torgtype_code, torg_seq, status, OperType, us);
         }
         #endregion
 
@@ -350,9 +350,9 @@
         #endregion
 
         #region[宸ュ簭鏂板缂栬緫]
-        public static ToMessage AddUpdateStep(string stepid, string stepcode, string stepname, string steptypecode, string enable, string description, User us, string operType)
+        public static ToMessage AddUpdateStep(string operType, User us, TFlw_Rteqp tflw_rteqp)
         {
-            return BasicSettingDAL.AddUpdateStep(stepid,stepcode, stepname, steptypecode, enable, description, us, operType);
+            return BasicSettingDAL.AddUpdateStep(operType,us, tflw_rteqp);
         }
         #endregion
 
@@ -363,6 +363,20 @@
         }
         #endregion
 
+        #region[宸ュ簭瀹氫箟鍏宠仈宸ヤ綔绔欐煡璇
+        public static ToMessage StepAssociationEqp(string stepcode,User us)
+        {
+            return BasicSettingDAL.StepAssociationEqp(stepcode, us);
+        }
+        #endregion
+
+        #region [宸ュ簭瀹氫箟鍏宠仈宸ヤ綔绔欐彁浜
+        public static ToMessage SaveStepAssociationEqp(string stepcode, User us, List<ObjectData> json)
+        {
+            return BasicSettingDAL.SaveStepAssociationEqp(stepcode, us, json);
+        }
+        #endregion
+
 
         #region[鑺傛媿宸ヤ环,浜у搧淇℃伅鏌ヨ]
         public static ToMessage PartSelect()

--
Gitblit v1.9.3