using System; using System.Collections.Generic; using System.Text; using Microsoft.Table; using TEAMModelOS.SDK.Context.Attributes.Azure; namespace TEAMModelOS.SDK.Models.Cosmos.BI { [TableName(Name = ("BIDDUserInfo"))] public class DingDingUserInfo : TableEntity { /// /// 员工的userId。 /// public string userId { get; set; } /// /// 员工在当前开发者企业账号范围内的唯一标识。 /// public string unionId { get; set; } /// /// 钉钉名称 /// public string name { get; set; } /// /// 钉钉邮箱 /// public string email { get; set; } /// /// 钉钉职位 /// public string title { get; set; } /// /// 手机区号 /// public string stateCode { get; set; } /// /// 钉钉手机号 /// public string mobile { get; set; } /// /// 工号 /// public string jobNumber { get; set; } /// /// 上级钉钉部门ID /// public long pid { get; set; } /// /// 钉钉当前部门 /// public long deptId { get; set; } /// /// 钉钉部门名称 /// public string deptName { get; set; } /// /// 所在企业部门 /// public string depts { get; set; } /// /// 钉钉头像 /// public string avatar { get; set; } /// /// 是否管理员 /// public bool isAdmin { get; set; } /// /// 醍摩豆账号 /// public string tmdId { get; set; } /// /// 醍摩豆名称 /// public string tmdName { get; set; } /// /// 醍摩豆手机号 /// public string tmdMobile { get; set; } /// /// 醍摩豆邮箱 /// public string mail { get; set; } /// /// 醍摩豆头像 /// public string picture { get; set; } /// /// BI角色 /// public string roles { get; set; } /// /// admin 角色加入时间 /// public long joinTime { get; set; } /// /// BI权限 /// public string permissions { get; set; } /// /// 学校列表 /// public string schoolIds { get; set; } /// /// 是否禁用 0 禁用 1启用 /// public long isDisable { get; set; } = 0; } }