VueWebApi/DLL/BLL/BasicSettingBLL.cs
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Web;
using VueWebApi.DLL.DAL;
@@ -226,5 +227,73 @@
            return BasicSettingDAL.DeleteCurrentUnit(unitcode);
        }
        #endregion
        #region[安灯系统/自定义安灯呼叫类型查询]
        public static ToMessage AnDengTypeSearch()
        {
            return BasicSettingDAL.AnDengTypeSearch();
        }
        #endregion
        #region[安灯系统/自定义安灯呼叫类型新增]
        public static ToMessage AddUpdateAnDengType(List<ObjectData> json, string username)
        {
            return BasicSettingDAL.AddUpdateAnDengType(json, username);
        }
        #endregion
        #region[安灯系统/自定义安灯呼叫类型删除]
        public static ToMessage DeleteAnDengType(string andengtypecode)
        {
            return BasicSettingDAL.DeleteAnDengType(andengtypecode);
        }
        #endregion
        #region[安灯系统/查询绑定的响应人员]
        public static ToMessage AnDengResponUserSearch(string wkshopcode, string calltypecode)
        {
            return BasicSettingDAL.AnDengResponUserSearch(wkshopcode,calltypecode);
        }
        #endregion
        #region[安灯系统/新增响应人员查询已绑定的响应人员]
        public static ToMessage AnDengDialogResponUserSearch(string wkshopcode, string calltypecode)
        {
            return BasicSettingDAL.AnDengDialogResponUserSearch(wkshopcode, calltypecode);
        }
        #endregion
        #region[安灯系统/新增响应人员提交]
        public static ToMessage AnDengDigoResponUserSeave(string wkshopcode, string calltypecode,string enable, string usercode, DataTable json)
        {
            return BasicSettingDAL.AnDengDigoResponUserSeave(wkshopcode, calltypecode, enable, usercode, json);
        }
        #endregion
        #region[安灯系统/响应人员允许关闭]
        public static ToMessage AnDengResponUserCloseSeave(string wkshopcode, string calltypecode, string enable, string usercode)
        {
            return BasicSettingDAL.AnDengResponUserCloseSeave(wkshopcode, calltypecode, enable, usercode);
        }
        #endregion
        #region[安灯系统/响应人员删除]
        public static ToMessage AnDengResponUserDeleteSeave(string id,string ando_cogfigid)
        {
            return BasicSettingDAL.AnDengResponUserDeleteSeave(id, ando_cogfigid);
        }
        #endregion
        #region[通过车间编码查找设备信息]
        public static ToMessage WhkspIsEqpSearch(string wkshpcode)
        {
            return BasicSettingDAL.WhkspIsEqpSearch(wkshpcode);
        }
        #endregion
    }
}