username@email.com
2023-10-17 3f4013e9283d1fe29ef40cc8b4d7ee7a590a1590
DocumentServiceAPI.Model/JwtInfo.cs
@@ -1,5 +1,7 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
@@ -12,14 +14,14 @@
    public class JwtInfo
    {
        /// <summary>
        /// 员工ITCODE
        /// 员工ID
        /// </summary>
        public int?   EID { get; set; }
        /// <summary>
        /// 租户ID
        /// </summary>
        public int ?TID { get; set; }
        public int? TEID { get; set; }
        /// <summary>
@@ -46,18 +48,22 @@
        /// <summary>
        /// PCAPP登录
        /// </summary>
        [Description( "PCAPP登录")]
        PC,
        /// <summary>
        /// APP端登录
        /// </summary>
        [Description("APP端登录")]
        APP,
        /// <summary>
        /// 微信小程序登录
        /// </summary>
        [Description("微信小程序登录")]
        WeChat,
        /// <summary>
        /// 页面端登录
        /// </summary>
          [Description("页面端登录")]
        Web
    }