| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.ComponentModel; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | |
| | | 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> |
| | |
| | | /// <summary> |
| | | /// PCAPP登录 |
| | | /// </summary> |
| | | [Description( "PCAPP登录")] |
| | | PC, |
| | | /// <summary> |
| | | /// APP端登录 |
| | | /// </summary> |
| | | [Description("APP端登录")] |
| | | APP, |
| | | /// <summary> |
| | | /// 微信小程序登录 |
| | | /// </summary> |
| | | [Description("微信小程序登录")] |
| | | WeChat, |
| | | /// <summary> |
| | | /// 页面端登录 |
| | | /// </summary> |
| | | [Description("页面端登录")] |
| | | Web |
| | | |
| | | } |