using System;
using System.Collections.Generic;
using System.Text;
namespace GxPress.Result.User
{
///
/// 用户基本信息
///
public class UserInfoResult
{
///
/// 手机
///
public string Phone { get; set; }
///
/// 昵称
///
public string Nick { get; set; }
///
/// 姓名
///
public string Name { get; set; }
///
/// 头像地址
///
public string AvatarUrl { get; set; }
///
/// 用户ID
///
public int Id { get; set; }
///
/// 环信ID
///
public string ImId { get; set; }
///
/// 部门名称
///
///
public string DepartmentName { get; set; }
///
/// 部门Id
///
///
public int DepartmentId { get; set; }
///
/// 是否禁用
///
///
public bool IsDisable { get; set; }
}
}