using System.Collections.Generic;
namespace Learun.Application.WeChat.WeChat
{
///
/// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
/// Copyright (c) 2013-2017
/// 创 建:超级管理员
/// 日 期:2017-09-22 12:01
/// 描 述:获取微信成员返回实体类
///
public class GetUserEntity
{
///
/// 错误码
///
public int errcode { get; set; }
///
/// 错误内容
///
public string errmsg { get; set; }
///
/// 成员UserID
///
public string userid { get; set; }
///
/// 成员名称
///
public string name { get; set; }
///
/// 英文名
///
public string english_name { get; set; }
///
/// 手机号码。企业内必须唯一,mobile/email二者不能同时为空
///
public string mobile { get; set; }
///
/// 成员所属部门id列表,不超过20个
///
public List department { get; set; }
///
/// 部门内的排序值,默认为0,成员次序以创建时间从小到大排列。数量必须和department一致,数值越大排序越前面。有效的值范围是[0, 2^32)
///
public List order { get; set; }
///
/// 职位信息
///
public string position { get; set; }
///
/// 性别。1表示男性,2表示女性
///
public int gender { get; set; }
///
/// 邮箱。长度为0~64个字节。企业内必须唯一,mobile/email二者不能同时为空
///
public string email { get; set; }
///
/// 座机
///
public string telephone { get; set; }
///
/// 上级
///
public int isleader { get; set; }
///
/// 成员头像的mediaid
///
public string avatar { get; set; }
///
/// 启用/禁用成员。1表示启用成员,0表示禁用成员
///
public int enable { get; set; }
///
/// 激活状态: 1=已激活,2=已禁用,4=未激活
///
public int status { get; set; }
}
}