using System; using System.Collections.Generic; using System.Text; namespace MadRunFabric.Common { public class UserInfoModel { /// /// id /// public string id { get; set; } /// /// 用户工号 /// public string usercode { get; set; } /// /// 名称 /// public string username { get; set; } /// /// 密码 /// public string password { get; set; } /// /// 0表示诺达集团员工,1表示甲方医院员工,2表示普通群众用户 /// public int type { get; set; } /// /// 标志(0:非话务;1话务标志) /// public bool seat_flag { get; set; } /// /// 分机号 /// public string extensionnumber { get; set; } /// /// 部门ID /// public string dept_id { get; set; } /// /// 角色id /// public string role_id { get; set; } /// /// 角色名字 /// public string role_name { get; set; } /// /// 角色代码 /// public string role_code { get; set; } /// /// 层级 /// public int level { get; set; } /// /// 是否所有项目 /// public int isallproject { get; set; } /// /// 坐席组 /// public string group { get; set; } /// /// 坐席权限组1班长坐席0普通坐席 /// public int seat_right { get; set; } /// /// 坐席等级 /// public string seat_level { get; set; } /// /// 手机号码 /// public string mobile { get; set; } /// /// 微信openid /// public string weixin { get; set; } /// /// 微信头像 /// public string weixin_img { get; set; } /// /// 微信昵称 /// public string weixin_name { get; set; } /// /// 项目ids /// public List projectlist { get; set; } } }