VueWebApi/DLL/BLL/AppDeviceManageBLL.cs
@@ -53,5 +53,82 @@
            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
    }
}