From ff2d682273e71c9d1f01ea8405116396da87a259 Mon Sep 17 00:00:00 2001
From: yl <ykxkd@outlook.com>
Date: 星期五, 12 八月 2022 17:15:32 +0800
Subject: [PATCH] 大岛仓库看板接口
---
VueWebApi/DLL/BLL/LoginBLL.cs | 21 +++++++++++++++++----
1 files changed, 17 insertions(+), 4 deletions(-)
diff --git a/VueWebApi/DLL/BLL/LoginBLL.cs b/VueWebApi/DLL/BLL/LoginBLL.cs
index fc66ce6..73a9574 100644
--- a/VueWebApi/DLL/BLL/LoginBLL.cs
+++ b/VueWebApi/DLL/BLL/LoginBLL.cs
@@ -17,19 +17,32 @@
}
#endregion
+ #region [鍐欏叆鐧诲綍璁板綍琛╙
+ public static ToMessage LoginBas(string usercode,string usertype)
+ {
+ return LoginDAL.LoginBas(usercode,usertype);
+ }
+ #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
#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