duhe
2024-10-25 948bc8f68b05abd2c942217159de1fe31075f8cd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
 
namespace DingTalk.Api.Response
{
    /// <summary>
    /// OapiRhinoHumanresCorpemployeeGetResponse.
    /// </summary>
    public class OapiRhinoHumanresCorpemployeeGetResponse : DingTalkResponse
    {
        /// <summary>
        /// 员工详情
        /// </summary>
        [XmlElement("corp_employee_info")]
        public ModelDomain CorpEmployeeInfo { get; set; }
 
        /// <summary>
        /// 错误码
        /// </summary>
        [XmlElement("errcode")]
        public long Errcode { get; set; }
 
        /// <summary>
        /// message
        /// </summary>
        [XmlElement("errmsg")]
        public string Errmsg { get; set; }
 
        /// <summary>
        /// 扩展信息
        /// </summary>
        [XmlElement("external_msg_info")]
        public string ExternalMsgInfo { get; set; }
 
        /// <summary>
        /// status_code
        /// </summary>
        [XmlElement("status_code")]
        public long StatusCode { get; set; }
 
        /// <summary>
        /// 是否成功
        /// </summary>
        [XmlElement("success")]
        public bool Success { get; set; }
 
    /// <summary>
/// ModelDomain Data Structure.
/// </summary>
[Serializable]
 
public class ModelDomain : TopObject
{
            /// <summary>
            /// 部门邮箱
            /// </summary>
            [XmlElement("bu_mail")]
            public string BuMail { get; set; }
    
            /// <summary>
            /// buc ID
            /// </summary>
            [XmlElement("buc_id")]
            public long BucId { get; set; }
    
            /// <summary>
            /// 企业ID
            /// </summary>
            [XmlElement("corp_id")]
            public string CorpId { get; set; }
    
            /// <summary>
            /// 离职日期
            /// </summary>
            [XmlElement("departure_date")]
            public string DepartureDate { get; set; }
    
            /// <summary>
            /// 钉钉全局员工ID
            /// </summary>
            [XmlElement("dingtalk_no")]
            public string DingtalkNo { get; set; }
    
            /// <summary>
            /// 钉钉企业下员工ID
            /// </summary>
            [XmlElement("dingtalk_user_id")]
            public string DingtalkUserId { get; set; }
    
            /// <summary>
            /// 入职日期
            /// </summary>
            [XmlElement("hire_date")]
            public string HireDate { get; set; }
    
            /// <summary>
            /// 主键ID
            /// </summary>
            [XmlElement("id")]
            public long Id { get; set; }
    
            /// <summary>
            /// 头像
            /// </summary>
            [XmlElement("img_url")]
            public string ImgUrl { get; set; }
    
            /// <summary>
            /// 职位
            /// </summary>
            [XmlElement("job")]
            public string Job { get; set; }
    
            /// <summary>
            /// 手机号
            /// </summary>
            [XmlElement("mobile")]
            public string Mobile { get; set; }
    
            /// <summary>
            /// 姓名
            /// </summary>
            [XmlElement("name")]
            public string Name { get; set; }
    
            /// <summary>
            /// 状态
            /// </summary>
            [XmlElement("status")]
            public long Status { get; set; }
    
            /// <summary>
            /// uic ID
            /// </summary>
            [XmlElement("uic_id")]
            public long UicId { get; set; }
    
            /// <summary>
            /// 工号
            /// </summary>
            [XmlElement("work_no")]
            public string WorkNo { get; set; }
    
            /// <summary>
            /// 工作状态
            /// </summary>
            [XmlElement("work_status")]
            public long WorkStatus { get; set; }
}
 
    }
}