yl
2025-11-17 8d46fbb3dcdc7831757800ae78f5aabaac1d4195
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using VueWebCoreApi.DLL.DAL;
using VueWebCoreApi.Models;
using VueWebCoreApi.Tools;
 
namespace VueWebCoreApi.DLL.BLL
{
    public class AppAnDonBLL
    {
        #region[安灯呼叫扫描工位]
        public static ToMessage AppAnDonCallScanSearch(string eqpcode)
        {
            return AppAnDonDAL.AppAnDonCallScanSearch(eqpcode);
        }
        #endregion
 
        #region[安灯呼叫,选择扫描工位带出呼叫类型选项及对应人员数据]
        public static ToMessage AppAnDonCallItemSearch(string eqpcode, string wkshpcode)
        {
            return AppAnDonDAL.AppAnDonCallItemSearch(eqpcode, wkshpcode);
        }
        #endregion
 
        #region[安灯呼叫提交]
        public static ToMessage AppAnDonCallSave(User us, string eqpcode, string wkshpcode, List<AnDnDate> json)
        {
            return AppAnDonDAL.AppAnDonCallSave(us, eqpcode, wkshpcode, json);
        }
        #endregion
 
 
 
        #region[安灯响应扫描工位/设备]
        public static ToMessage AppAnDonLampResponseScanSearch(string eqpcode)
        {
            return AppAnDonDAL.AppAnDonLampResponseScanSearch(eqpcode);
        }
        #endregion
 
        #region[安灯响应提交]
        public static ToMessage AppAnDonLampResponseSave(User us, string eqpcode, string wkshpcode, List<ObjectData> json)
        {
            return AppAnDonDAL.AppAnDonLampResponseSave(us, eqpcode, wkshpcode, json);
        }
        #endregion
    }
}