using static AI.Platform.Core.Entity.PublicEnum; namespace AI.Platform.Core.Entity; // 令牌token public class TokenModelJwt { /// /// Id /// public long UserId { get; set; } /// /// /// public string Name { get; set; } /// /// 用户类型 /// public UserType UserType { get; set; } }