From 0aae85d3e241b2aa415c96f12e9f6ac415cffa49 Mon Sep 17 00:00:00 2001
From: yl <ykxkd@outlook.com>
Date: 星期三, 28 九月 2022 13:38:47 +0800
Subject: [PATCH] 登录redis存储判断是否失效过滤器修改 设备维修、维修验证接口来发
---
VueWebApi/DLL/BLL/AppDeviceManageBLL.cs | 104 +++++++++++++++++++++++++++++++++++++++++++++++++++-
1 files changed, 102 insertions(+), 2 deletions(-)
diff --git a/VueWebApi/DLL/BLL/AppDeviceManageBLL.cs b/VueWebApi/DLL/BLL/AppDeviceManageBLL.cs
index 825fbc8..9d2f74c 100644
--- a/VueWebApi/DLL/BLL/AppDeviceManageBLL.cs
+++ b/VueWebApi/DLL/BLL/AppDeviceManageBLL.cs
@@ -11,9 +11,9 @@
public class AppDeviceManageBLL
{
#region[鏃ュ父鐐规,鎵弿宸ヤ綅/璁惧浜岀淮鐮乚
- public static ToMessage ScanDeviceQrCodeData(string eqpcode)
+ public static ToMessage CheckScanDeviceQrCodeData(string eqpcode)
{
- return AppDeviceManageDAL.ScanDeviceQrCodeData(eqpcode);
+ return AppDeviceManageDAL.CheckScanDeviceQrCodeData(eqpcode);
}
#endregion
@@ -30,5 +30,105 @@
return AppDeviceManageDAL.AppDeviceCheckSave(username,json);
}
#endregion
+
+
+
+ #region[瀹氭湡淇濆吇,鎵弿宸ヤ綅/璁惧浜岀淮鐮乚
+ public static ToMessage RepairScanDeviceQrCodeData(string eqpcode)
+ {
+ return AppDeviceManageDAL.RepairScanDeviceQrCodeData(eqpcode);
+ }
+ #endregion
+
+ #region[鏃ュ父淇濆吇,閫夋嫨鎵爜璁惧鍒楄〃甯﹀嚭淇濆吇椤筣
+ public static ToMessage RepairSelectScanDeviceQrCodeItem(string eqpcode)
+ {
+ return AppDeviceManageDAL.RepairSelectScanDeviceQrCodeItem(eqpcode);
+ }
+ #endregion
+
+ #region[鏃ュ父淇濆吇,鎻愪氦淇濆瓨]
+ public static ToMessage AppDeviceRepairSave(string username,string maintcyc, AppDevicecCheck json)
+ {
+ return AppDeviceManageDAL.AppDeviceRepairSave(username, maintcyc, json);
+ }
+ #endregion
+
+
+
+ #region[璁惧缁翠慨鐢宠,鎵弿宸ヤ綅/璁惧浜岀淮鐮乚
+ public static ToMessage MaintainScanDeviceApplyQrCodeData(string eqpcode)
+ {
+ return AppDeviceManageDAL.MaintainScanDeviceApplyQrCodeData(eqpcode);
+ }
+ #endregion
+
+ #region[璁惧缁翠慨鐢宠,鎻愪氦淇濆瓨]
+ public static ToMessage MaintainScanDeviceApplySave(string username, string eqpcode, string wkshpcode, string faultsourcecode, string faultdescr, HttpFileCollection files)
+ {
+ return AppDeviceManageDAL.MaintainScanDeviceApplySave(username,eqpcode, wkshpcode, faultsourcecode, faultdescr, files);
+ }
+ #endregion
+
+
+ #region[璁惧缁翠慨鍒楄〃]
+ public static ToMessage RepairScanDeviceQrCodeData()
+ {
+ return AppDeviceManageDAL.RepairScanDeviceQrCodeData();
+ }
+ #endregion
+
+ #region[璁惧缁翠慨鎻愪氦]
+ public static ToMessage RepairScanDeviceSave(string username, string eqpcode, string wkshpcode, string faultdescr, string is_stoprepair, string repaircontent, string replaceparts, HttpFileCollection files)
+ {
+ return AppDeviceManageDAL.RepairScanDeviceSave(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 eqpcode, string wkshpcode)
+ {
+ return AppDeviceManageDAL.RepairVerificationScanDeviceDataSub(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[瀹夌伅鍛煎彨鎵弿宸ヤ綅]
+ public static ToMessage AppDeviceAnDengCallScanSearch(string eqpcode)
+ {
+ return AppDeviceManageDAL.AppDeviceAnDengCallScanSearch(eqpcode);
+ }
+ #endregion
+
+ #region[瀹夌伅鍛煎彨,閫夋嫨鎵弿宸ヤ綅甯﹀嚭鍛煎彨绫诲瀷閫夐」鍙婂搴斾汉鍛樻暟鎹甝
+ public static ToMessage AppDeviceAnDengCallItemSearch(string eqpcode,string wkshpcode)
+ {
+ return AppDeviceManageDAL.AppDeviceAnDengCallItemSearch(eqpcode, wkshpcode);
+ }
+ #endregion
+
+ #region[瀹夌伅鍛煎彨鎻愪氦]
+ public static ToMessage AppDeviceAnDengCallSave(string username, string eqpcode, string wkshpcode, List<AnDnDate> json)
+ {
+ return AppDeviceManageDAL.AppDeviceAnDengCallSave(username,eqpcode,wkshpcode,json);
+ }
+ #endregion
+
+
}
}
\ No newline at end of file
--
Gitblit v1.9.3