From 57c0156fe021f9c690993e91da5dd280187f4fad Mon Sep 17 00:00:00 2001 From: liaoxujun@qq.com <liaoxujun@qq.com> Date: 星期二, 01 八月 2023 17:15:03 +0800 Subject: [PATCH] Merge branch 'master' of http://47.108.235.38:8080/r/DocumentService --- DocumentServiceAPI.Model/JwtInfo.cs | 64 ++++++++++++++++++++++++++++++++ 1 files changed, 64 insertions(+), 0 deletions(-) diff --git a/DocumentServiceAPI.Model/JwtInfo.cs b/DocumentServiceAPI.Model/JwtInfo.cs new file mode 100644 index 0000000..8ff4736 --- /dev/null +++ b/DocumentServiceAPI.Model/JwtInfo.cs @@ -0,0 +1,64 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace DocumentServiceAPI.Model +{ + /// <summary> + /// Jwt淇℃伅 + /// </summary> + public class JwtInfo + { + /// <summary> + /// 鍛樺伐ITCODE + /// </summary> + public int? EID { get; set; } + + /// <summary> + /// 绉熸埛ID + /// </summary> + public int ?TID { get; set; } + + + /// <summary> + /// 鍏徃ID + /// </summary> + public int? UID { get; set; } + + /// <summary> + /// Id璇嗗埆鍙凤紝涓昏鐢ㄤ簬鍒ゆ柇鍗曠鐧诲綍 + /// </summary> + public Guid? JID { get; set; } + + /// <summary> + /// 鐧诲綍婧� + /// </summary> + public LogInFrom LogInSource { get; set; } + } + + /// <summary> + /// 鐧诲綍婧� 绫诲瀷 + /// </summary> + public enum LogInFrom + { + /// <summary> + /// PCAPP鐧诲綍 + /// </summary> + PC, + /// <summary> + /// APP绔櫥褰� + /// </summary> + APP, + /// <summary> + /// 寰俊灏忕▼搴忕櫥褰� + /// </summary> + WeChat, + /// <summary> + /// 椤甸潰绔櫥褰� + /// </summary> + Web + + } +} -- Gitblit v1.9.1