From 931767239577c1a81f298ddccd65e3137c80b326 Mon Sep 17 00:00:00 2001
From: lu <123456>
Date: 星期五, 22 八月 2025 08:28:22 +0800
Subject: [PATCH] 称重
---
DevApp/Gs.DevApp/Entity/LoginInfoModel.cs | 32 ++++++++++++++++++++++++++++++++
1 files changed, 32 insertions(+), 0 deletions(-)
diff --git a/DevApp/Gs.DevApp/Entity/LoginInfoModel.cs b/DevApp/Gs.DevApp/Entity/LoginInfoModel.cs
new file mode 100644
index 0000000..f0f6908
--- /dev/null
+++ b/DevApp/Gs.DevApp/Entity/LoginInfoModel.cs
@@ -0,0 +1,32 @@
+锘縩amespace Gs.DevApp.Entity
+{
+ /// <summary>
+ /// 鐧诲綍绫�
+ /// </summary>
+ public class LoginInfoModel
+ {
+ private static LoginInfoModel _CurrentUser;
+
+ /// <summary>
+ /// 鐧诲綍鐢ㄦ埛鐨刧uid
+ /// </summary>
+ public string LoginUserGuid { get; set; } = "";
+
+
+ /// <summary>
+ /// 鐧诲綍鏃堕棿
+ /// </summary>
+ public string LoginTime { get; set; }
+
+ //搴旂敤鍗曚欢妯″紡锛屼繚瀛樼敤鎴风櫥褰曠姸鎬�
+ public static LoginInfoModel CurrentUser
+ {
+ get
+ {
+ if (_CurrentUser == null)
+ _CurrentUser = new LoginInfoModel();
+ return _CurrentUser;
+ }
+ }
+ }
+}
\ No newline at end of file
--
Gitblit v1.9.3