using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using LearningOfficer.OA.Common.Enums;
namespace LearningOfficer.OA.Common.Dtos.LoginMobile
{
public class UserResult
{
///
/// 备 注:用户中心id
/// 默认值:
///
public long Id { get; set; }
///
/// 用户类型(1高中,2初中)
///
public long UserType { get; set; }
///
/// 备 注:姓名
/// 默认值:
///
public string RealName { get; set; } = null!;
///
/// 备 注:账号
/// 默认值:
///
public string Account { get; set; } = null!;
///
/// 角色枚举
///
public SysRoleEnum RoleEnum { get; set; }
///
/// 云校id
///
public long? Cloud_id { get; set; }
///
/// 角色名称
///
public string? Role_Name { get; set; }
///
/// 备 注:云校名称
/// 默认值:
///
public string? CloudName { get; set; }
///
/// 备 注:手机号
/// 默认值:
///
public string? Phone { get; set; }
///
/// 头像URL
///
public string HeadImage { get; set; }
}
}