yl
2022-10-27 5d70327428efc1d341617d0b26c059bc5217b951
VueWebApi/DLL/BLL/LoginBLL.cs
@@ -25,9 +25,9 @@
        #endregion
        #region[查询菜单功能]
        public static ToMessage LoginMenu(string usercode)
        public static ToMessage LoginMenu(string usercode,string usertype)
        {
            return LoginDAL.LoginMenu(usercode);
            return LoginDAL.LoginMenu(usercode, usertype);
        }
        #endregion
@@ -39,11 +39,25 @@
        }
        #endregion
        #region[登出]
        #region[PC登出]
        public static ToMessage LoginOut(int userid,string usercode, string username,string usertype)
        {
            return LoginDAL.LoginOut(userid,usercode, username, usertype);
        }
        #endregion
        #region[App登出]
        public static ToMessage LoginAppOut(int userid, string usercode, string username, string usertype)
        {
            return LoginDAL.LoginAppOut(userid, usercode, username, usertype);
        }
        #endregion
        #region[App登录查询安灯呼叫信息]
        public static ToMessage LoginAppAnDonMessage(string rid, string usercode, string username, string usertype)
        {
            return LoginDAL.LoginAppAnDonMessage(rid, usercode, username, usertype);
        }
        #endregion
    }
}