From 770c681572301c938d7b9adcc60d9aad9d1dd604 Mon Sep 17 00:00:00 2001
From: yl <ykxkd@outlook.com>
Date: 星期二, 19 九月 2023 17:37:03 +0800
Subject: [PATCH] 1.新增基本资料功能接口(erp车间/部门、erp仓库、erp用户信息) 2.报工接口添加字段入库条码 3.增加末道工序报工后提交入库接口(对接erp) 4.增加生成系统条码接口(自定义)

---
 VueWebApi/DLL/BLL/AppDeviceManageBLL.cs |   48 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 48 insertions(+), 0 deletions(-)

diff --git a/VueWebApi/DLL/BLL/AppDeviceManageBLL.cs b/VueWebApi/DLL/BLL/AppDeviceManageBLL.cs
index c7188b6..49e2085 100644
--- a/VueWebApi/DLL/BLL/AppDeviceManageBLL.cs
+++ b/VueWebApi/DLL/BLL/AppDeviceManageBLL.cs
@@ -71,7 +71,41 @@
         #endregion
 
 
+        #region[璁惧缁翠慨鍒楄〃]
+        public static ToMessage RepairScanDeviceQrCodeDataList()
+        {
+            return AppDeviceManageDAL.RepairScanDeviceQrCodeDataList();
+        }
+        #endregion
 
+        #region[璁惧缁翠慨鎻愪氦]
+        public static ToMessage RepairScanDeviceSave(string docu_code, string username, string eqpcode, string wkshpcode, string faultdescr, string is_stoprepair, string repaircontent, string replaceparts, HttpFileCollection files)
+        {
+            return AppDeviceManageDAL.RepairScanDeviceSave(docu_code,username, eqpcode, wkshpcode, faultdescr, is_stoprepair, repaircontent, replaceparts, files);
+        }
+        #endregion
+
+
+        #region[缁翠慨楠岃瘉鍒楄〃]
+        public static ToMessage RepairVerificationScanDeviceData()
+        {
+            return AppDeviceManageDAL.RepairVerificationScanDeviceData();
+        }
+        #endregion
+
+        #region[缁翠慨楠岃瘉璇︽儏淇℃伅]
+        public static ToMessage RepairVerificationScanDeviceDataSub(string repair_code, string eqpcode, string wkshpcode)
+        {
+            return AppDeviceManageDAL.RepairVerificationScanDeviceDataSub(repair_code,eqpcode, wkshpcode);
+        }
+        #endregion
+
+        #region[缁翠慨楠岃瘉鎻愪氦]
+        public static ToMessage RepairVerificationScanDeviceSave(string username,string repairwo, string eqpcode, string wkshpcode, string result)
+        {
+            return AppDeviceManageDAL.RepairVerificationScanDeviceSave(username, repairwo,eqpcode, wkshpcode, result);
+        }
+        #endregion
 
 
         #region[瀹夌伅鍛煎彨鎵弿宸ヤ綅]
@@ -96,5 +130,19 @@
         #endregion
 
 
+
+        #region[瀹夌伅鍝嶅簲鎵弿宸ヤ綅/璁惧]
+        public static ToMessage AppDeviceAnDengLampResponseScanSearch(string eqpcode)
+        {
+            return AppDeviceManageDAL.AppDeviceAnDengLampResponseScanSearch(eqpcode);
+        }
+        #endregion
+
+        #region[瀹夌伅鍝嶅簲鎻愪氦]
+        public static ToMessage AppDeviceAnDengLampResponseSave(string username, string eqpcode, string wkshpcode, List<ObjectData> json)
+        {
+            return AppDeviceManageDAL.AppDeviceAnDengLampResponseSave(username,eqpcode,wkshpcode,json);
+        }
+        #endregion
     }
 }
\ No newline at end of file

--
Gitblit v1.9.3