yl
2022-06-21 f7fdf63c13241dfa7d66a3315fd54429670e24bf
VueWebApi/DLL/BLL/LoginBLL.cs
@@ -17,6 +17,12 @@
        }
        #endregion
        #region [写入登录记录表]
        public static ToMessage LoginBas(string usercode,string usertype)
        {
            return LoginDAL.LoginBas(usercode,usertype);
        }
        #endregion
        #region[查询菜单功能]
        public static ToMessage LoginMenu(string usercode)
@@ -27,9 +33,16 @@
        #region[修改密码]
        public static ToMessage UpdateUserPassword(string username, string password, string newpassword)
        public static ToMessage UpdateUserPassword(string usercode, string username, string password, string newpassword)
        {
            return LoginDAL.UpdateUserPassword(username, password,newpassword);
            return LoginDAL.UpdateUserPassword(usercode,username, password,newpassword);
        }
        #endregion
        #region[登出]
        public static ToMessage LoginOut(int userid,string usercode, string username,string usertype)
        {
            return LoginDAL.LoginOut(userid,usercode, username, usertype);
        }
        #endregion
    }