Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/LoginMobile/MobileTokenInfo.cs

57 lines
1.5 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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
{
/// <summary>
/// 用户Id
/// </summary>
public string UserId { get; set; }
/// <summary>
/// 用户类型1高中2初中
/// </summary>
public string UserType { get; set; }
/// <summary>
/// 用户名称
/// </summary>
public string UserName { get; set; }
/// <summary>
/// 角色枚举值
/// </summary>
public string RoleEnum { get; set; }
/// <summary>
/// 账号名称
/// </summary>
public string Account { get; set; }
/// <summary>
/// Jwt_id
/// </summary>
public string Jwt_id { get; set; }
/// <summary>
/// 1:Android2:Ios
/// </summary>
public string loginType { get; set; } = "1";
/// <summary>
/// 角色名称
/// </summary>
public string Role_Name { get; set; }
/// <summary>
/// 电话
/// </summary>
public string Phone { get; set; }
/// <summary>
/// 学校
/// </summary>
public string School_Name { get; set; }
/// <summary>
/// 云校id
/// </summary>
public string Cloud_id { get; set; }
}
}