using System.Collections.Generic; namespace Learun.Application.WeChat { public class UserGetResult : OperationResultsBase { /// /// 员工UserID /// /// public string userid { get; set; } /// /// 成员名称 /// /// public string name { get; set; } /// /// 成员所属部门id列表 /// /// public List department { get; set; } /// /// 职位信息 /// /// public string position { get; set; } /// /// 手机号码 /// /// public string mobile { get; set; } /// /// 性别。gender=0表示男,=1表示女 /// /// public string gender { get; set; } /// /// 办公电话 /// /// public string tel { get; set; } /// /// 邮箱 /// /// public string email { get; set; } /// /// 微信号 /// /// public string weixinid { get; set; } /// /// 头像url。注:如果要获取小图将url最后的"/0"改成"/64"即可 /// /// public string avatar { get; set; } /// /// 关注状态: 1=已关注,2=已冻结,4=未关注 /// /// public int status { get; set; } } }