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 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 json) { return AppAnDonDAL.AppAnDonLampResponseSave(us, eqpcode, wkshpcode, json); } #endregion } }