12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.SDK.Models.Cosmos.BI
- {
- public class DingDingUser:CosmosEntity
- {
- public string name { get; set; }
- public string picture { get; set; }
- public List<School> schools { get; set; }
- public class School
- {
- public string schoolId { get; set; }
- public string name { get; set; }
- public string status { get; set; }
- public long time { get; set; }
- }
- public string phone { get; set; }
- public string tmdid { get; set; }
- public string stateCode { get; set; }
- public string jobNumber { get; set; }
- public string email { get; set; }
- public string deptPositionListDeptId { get; set; }
- public string deptPositionListTitle { get; set; }
- public string hiredDate { get; set; }
- public bool active { get; set; }
- public List<rolelist> roleList { get; set; }
- public class rolelist
- {
- public string id { get; set; }
- public string name { get; set; }
- public string groupName { get; set; }
- }
- }
- }
|