From 43d31c2e56da8954828be4a7e027c6ad0aaf038a Mon Sep 17 00:00:00 2001
From: yl <ykxkd@outlook.com>
Date: 星期三, 17 八月 2022 10:45:10 +0800
Subject: [PATCH] 设备点检项目、保养项目接口(查询、新增、编辑、删除、导入)

---
 VueWebApi/DLL/BLL/LoginBLL.cs |   13 ++++++++++---
 1 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/VueWebApi/DLL/BLL/LoginBLL.cs b/VueWebApi/DLL/BLL/LoginBLL.cs
index 85a4f28..feb9c8d 100644
--- a/VueWebApi/DLL/BLL/LoginBLL.cs
+++ b/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,18 @@
         }
         #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
     }
 }
\ No newline at end of file

--
Gitblit v1.9.3