yl
2023-03-29 d7ee9093070303766e34deab39d5867536c9e83f
VueWebApi/DLL/BLL/AppDeviceManageBLL.cs
@@ -72,16 +72,16 @@
        #region[设备维修列表]
        public static ToMessage RepairScanDeviceQrCodeData()
        public static ToMessage RepairScanDeviceQrCodeDataList()
        {
            return AppDeviceManageDAL.RepairScanDeviceQrCodeData();
            return AppDeviceManageDAL.RepairScanDeviceQrCodeDataList();
        }
        #endregion
        #region[设备维修提交]
        public static ToMessage RepairScanDeviceSave(string username, string eqpcode, string wkshpcode, string faultdescr, string is_stoprepair, string repaircontent, string replaceparts, HttpFileCollection files)
        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(username, eqpcode, wkshpcode, faultdescr, is_stoprepair, repaircontent, replaceparts, files);
            return AppDeviceManageDAL.RepairScanDeviceSave(docu_code,username, eqpcode, wkshpcode, faultdescr, is_stoprepair, repaircontent, replaceparts, files);
        }
        #endregion
@@ -94,9 +94,9 @@
        #endregion
        #region[维修验证详情信息]
        public static ToMessage RepairVerificationScanDeviceDataSub(string eqpcode, string wkshpcode)
        public static ToMessage RepairVerificationScanDeviceDataSub(string repair_code, string eqpcode, string wkshpcode)
        {
            return AppDeviceManageDAL.RepairVerificationScanDeviceDataSub(eqpcode,wkshpcode);
            return AppDeviceManageDAL.RepairVerificationScanDeviceDataSub(repair_code,eqpcode, wkshpcode);
        }
        #endregion
@@ -130,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
    }
}