using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LearningOfficer.OA.Common.Dtos.LoginMobile { public class MobileTokenInfo { /// /// 用户Id /// public string UserId { get; set; } /// /// 用户类型(1高中,2初中) /// public string UserType { get; set; } /// /// 用户名称 /// public string UserName { get; set; } /// /// 角色枚举值 /// public string RoleEnum { get; set; } /// /// 账号名称 /// public string Account { get; set; } /// /// Jwt_id /// public string Jwt_id { get; set; } /// /// 1:Android;2:Ios /// public string loginType { get; set; } = "1"; /// /// 角色名称 /// public string Role_Name { get; set; } /// /// 电话 /// public string Phone { get; set; } /// /// 学校 /// public string School_Name { get; set; } /// /// 云校id /// public string Cloud_id { get; set; } } }