yl
2022-08-31 2264c47cff7ab5ce52d7c158ac0eb941e7b46506
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,36 @@
            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 AppDeviceAnDengCallSave(string eqpcode)
        {
            return AppDeviceManageDAL.AppDeviceAnDengCallSave(eqpcode);
        }
        #endregion
    }
}