From f7fdf63c13241dfa7d66a3315fd54429670e24bf Mon Sep 17 00:00:00 2001
From: yl <ykxkd@outlook.com>
Date: 星期二, 21 六月 2022 08:37:49 +0800
Subject: [PATCH] 基础资料问题优化
---
VueWebApi/DLL/BLL/LoginBLL.cs | 17 +++++++++++++++--
1 files changed, 15 insertions(+), 2 deletions(-)
diff --git a/VueWebApi/DLL/BLL/LoginBLL.cs b/VueWebApi/DLL/BLL/LoginBLL.cs
index fc66ce6..85a4f28 100644
--- a/VueWebApi/DLL/BLL/LoginBLL.cs
+++ b/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
}
--
Gitblit v1.9.3