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

60 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;
using LearningOfficer.OA.Common.Enums;
namespace LearningOfficer.OA.Common.Dtos.LoginMobile
{
public class UserResult
{
/// <summary>
/// 备 注:用户中心id
/// 默认值:
///</summary>
public long Id { get; set; }
/// <summary>
/// 用户类型1高中2初中
/// </summary>
public long UserType { get; set; }
/// <summary>
/// 备 注:姓名
/// 默认值:
///</summary>
public string RealName { get; set; } = null!;
/// <summary>
/// 备 注:账号
/// 默认值:
///</summary>
public string Account { get; set; } = null!;
/// <summary>
/// 角色枚举
/// </summary>
public SysRoleEnum RoleEnum { get; set; }
/// <summary>
/// 云校id
/// </summary>
public long? Cloud_id { get; set; }
/// <summary>
/// 角色名称
/// </summary>
public string? Role_Name { get; set; }
/// <summary>
/// 备 注:云校名称
/// 默认值:
///</summary>
public string? CloudName { get; set; }
/// <summary>
/// 备 注:手机号
/// 默认值:
///</summary>
public string? Phone { get; set; }
/// <summary>
/// 头像URL
/// </summary>
public string HeadImage { get; set; }
}
}