yl
2022-08-30 fecc633f3a7fd0c49fccfb7b6198b402f66574e0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using VueWebApi.DLL.DAL;
using VueWebApi.Models;
using VueWebApi.Tools;
 
namespace VueWebApi.DLL.BLL
{
    public class AppDeviceManageBLL
    {
        #region[日常点检,扫描工位/设备二维码]
        public static ToMessage CheckScanDeviceQrCodeData(string eqpcode)
        {
            return AppDeviceManageDAL.CheckScanDeviceQrCodeData(eqpcode);
        }
        #endregion
 
        #region[日常点检,选择扫码设备列表带出点检项]
        public static ToMessage SelectScanDeviceQrCodeItem(string eqpcode)
        {
            return AppDeviceManageDAL.SelectScanDeviceQrCodeItem(eqpcode);
        }
        #endregion
 
        #region[日常点检、提交保存]
        public static ToMessage AppDeviceCheckSave(string username, AppDevicecCheck json)
        {
            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
    }
}