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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
 
namespace DingTalk.Api.Response
{
    /// <summary>
    /// OapiKacDatavAnnualReportGetResponse.
    /// </summary>
    public class OapiKacDatavAnnualReportGetResponse : DingTalkResponse
    {
        /// <summary>
        /// 错误代码
        /// </summary>
        [XmlElement("errcode")]
        public long Errcode { get; set; }
 
        /// <summary>
        /// 错误信息
        /// </summary>
        [XmlElement("errmsg")]
        public string Errmsg { get; set; }
 
        /// <summary>
        /// 返回结果对象
        /// </summary>
        [XmlElement("result")]
        public AnnualReportResponseDomain Result { get; set; }
 
    /// <summary>
/// AnnualReportResponseDomain Data Structure.
/// </summary>
[Serializable]
 
public class AnnualReportResponseDomain : TopObject
{
            /// <summary>
            /// 年累计活跃天数
            /// </summary>
            [XmlElement("act_usr_days_1y")]
            public long ActUsrDays1y { get; set; }
    
            /// <summary>
            /// 年累计打卡天数
            /// </summary>
            [XmlElement("at_check_days_1y")]
            public long AtCheckDays1y { get; set; }
    
            /// <summary>
            /// 年累计被at数
            /// </summary>
            [XmlElement("at_me_msg_cnt_1y")]
            public long AtMeMsgCnt1y { get; set; }
    
            /// <summary>
            /// 年累计审批平均处理时间(分钟)
            /// </summary>
            [XmlElement("avg_process_duration_1y")]
            public string AvgProcessDuration1y { get; set; }
    
            /// <summary>
            /// 年累计企业自建应用发起的审批数
            /// </summary>
            [XmlElement("corp_app_process_inst_cnt_1y")]
            public long CorpAppProcessInstCnt1y { get; set; }
    
            /// <summary>
            /// 年累计创建文档数
            /// </summary>
            [XmlElement("create_doc_cnt_1y")]
            public long CreateDocCnt1y { get; set; }
    
            /// <summary>
            /// 年累计创建审批数
            /// </summary>
            [XmlElement("create_process_cnt_1y")]
            public long CreateProcessCnt1y { get; set; }
    
            /// <summary>
            /// 年累计创建智能填表数
            /// </summary>
            [XmlElement("create_smartwork_cnt_1y")]
            public long CreateSmartworkCnt1y { get; set; }
    
            /// <summary>
            /// 年累计智能填表的人次,仅当type=1时有效
            /// </summary>
            [XmlElement("general_form_user_cnt_1y")]
            public long GeneralFormUserCnt1y { get; set; }
    
            /// <summary>
            /// 年累计新增内部群聊数量,仅当type=3时有效
            /// </summary>
            [XmlElement("inner_group_cnt_1y")]
            public long InnerGroupCnt1y { get; set; }
    
            /// <summary>
            /// 年累计阅读互动服务窗文章数量
            /// </summary>
            [XmlElement("isw_msg_click_cnt_1y")]
            public string IswMsgClickCnt1y { get; set; }
    
            /// <summary>
            /// 年累计参加日程数
            /// </summary>
            [XmlElement("join_calendar_cnt_1y")]
            public long JoinCalendarCnt1y { get; set; }
    
            /// <summary>
            /// 年累计参加日程人数
            /// </summary>
            [XmlElement("join_calendar_user_cnt_1y")]
            public long JoinCalendarUserCnt1y { get; set; }
    
            /// <summary>
            /// 年累计加入群数
            /// </summary>
            [XmlElement("join_group_cnt_1y")]
            public long JoinGroupCnt1y { get; set; }
    
            /// <summary>
            /// 年累计发起视频会议时长(分钟)
            /// </summary>
            [XmlElement("join_succ_video_conf_len_1y")]
            public string JoinSuccVideoConfLen1y { get; set; }
    
            /// <summary>
            /// 年累计参与(含发起)视频会议次数
            /// </summary>
            [XmlElement("join_succ_video_conf_num_1y")]
            public long JoinSuccVideoConfNum1y { get; set; }
    
            /// <summary>
            /// 年累计参与(含发起)视频会议人次,仅当type=1时有效
            /// </summary>
            [XmlElement("join_succ_video_conf_user_cnt_1y")]
            public long JoinSuccVideoConfUserCnt1y { get; set; }
    
            /// <summary>
            /// 年累计参与(含发起)语音会议时长(分钟)
            /// </summary>
            [XmlElement("join_succ_voip_conf_len_1y")]
            public string JoinSuccVoipConfLen1y { get; set; }
    
            /// <summary>
            /// 年累计参与(含发起)语音会议次数
            /// </summary>
            [XmlElement("join_succ_voip_conf_num_1y")]
            public long JoinSuccVoipConfNum1y { get; set; }
    
            /// <summary>
            /// 年累计参与(含发起)语音会议人次,仅当type=1时有效
            /// </summary>
            [XmlElement("join_succ_voip_conf_user_cnt_1y")]
            public long JoinSuccVoipConfUserCnt1y { get; set; }
    
            /// <summary>
            /// 年累计参与直播次数
            /// </summary>
            [XmlElement("live_join_succ_cnt_1y")]
            public long LiveJoinSuccCnt1y { get; set; }
    
            /// <summary>
            /// 年累计参与直播时长(分钟)
            /// </summary>
            [XmlElement("live_join_succ_time_len_1y")]
            public string LiveJoinSuccTimeLen1y { get; set; }
    
            /// <summary>
            /// 年累计最高运动步数
            /// </summary>
            [XmlElement("max_step_count_1y")]
            public long MaxStepCount1y { get; set; }
    
            /// <summary>
            /// 年累计审批最短处理时间(分钟)
            /// </summary>
            [XmlElement("min_process_duration_1y")]
            public string MinProcessDuration1y { get; set; }
    
            /// <summary>
            /// 年累计新增群数
            /// </summary>
            [XmlElement("new_group_cnt_1y")]
            public long NewGroupCnt1y { get; set; }
    
            /// <summary>
            /// 年累计外勤天数
            /// </summary>
            [XmlElement("outside_days_1y")]
            public long OutsideDays1y { get; set; }
    
            /// <summary>
            /// 处理审批数
            /// </summary>
            [XmlElement("process_inst_operate_cnt_1y")]
            public long ProcessInstOperateCnt1y { get; set; }
    
            /// <summary>
            /// 发起审批数
            /// </summary>
            [XmlElement("process_inst_submit_cnt_1y")]
            public long ProcessInstSubmitCnt1y { get; set; }
    
            /// <summary>
            /// 年累计接收DING数
            /// </summary>
            [XmlElement("recv_ding_cnt_1y")]
            public long RecvDingCnt1y { get; set; }
    
            /// <summary>
            /// 年累计新建日程数
            /// </summary>
            [XmlElement("send_calendar_cnt_1y")]
            public long SendCalendarCnt1y { get; set; }
    
            /// <summary>
            /// 年累计新建日程人数
            /// </summary>
            [XmlElement("send_calendar_user_cnt_1y")]
            public long SendCalendarUserCnt1y { get; set; }
    
            /// <summary>
            /// 年累计发送DING数
            /// </summary>
            [XmlElement("send_ding_cnt_1y")]
            public long SendDingCnt1y { get; set; }
    
            /// <summary>
            /// 年累计发送DING人数
            /// </summary>
            [XmlElement("send_ding_user_cnt_1y")]
            public long SendDingUserCnt1y { get; set; }
    
            /// <summary>
            /// 年累计发送群文件数
            /// </summary>
            [XmlElement("send_group_file_message_cnt_1y")]
            public long SendGroupFileMessageCnt1y { get; set; }
    
            /// <summary>
            /// 年累计发送群聊消息数
            /// </summary>
            [XmlElement("send_group_msg_cnt_1y")]
            public long SendGroupMsgCnt1y { get; set; }
    
            /// <summary>
            /// 年累计发送群聊人数
            /// </summary>
            [XmlElement("send_group_msg_user_cnt_1y")]
            public long SendGroupMsgUserCnt1y { get; set; }
    
            /// <summary>
            /// 年累计活跃群数(发消息群)
            /// </summary>
            [XmlElement("send_message_group_cnt_1y")]
            public long SendMessageGroupCnt1y { get; set; }
    
            /// <summary>
            /// 年累计发送日志数
            /// </summary>
            [XmlElement("send_report_cnt_1y")]
            public long SendReportCnt1y { get; set; }
    
            /// <summary>
            /// 年累计发送日志人数
            /// </summary>
            [XmlElement("send_report_user_cnt_1y")]
            public long SendReportUserCnt1y { get; set; }
    
            /// <summary>
            /// 发起视频会议时长(分钟)
            /// </summary>
            [XmlElement("start_succ_video_conf_len_1y")]
            public long StartSuccVideoConfLen1y { get; set; }
    
            /// <summary>
            /// 使用文档用户数(创建、编辑、分享、阅读)
            /// </summary>
            [XmlElement("use_doc_user_cnt_1y")]
            public long UseDocUserCnt1y { get; set; }
    
            /// <summary>
            /// 年累计使用的应用数量
            /// </summary>
            [XmlElement("use_micro_app_cnt_1y")]
            public long UseMicroAppCnt1y { get; set; }
    
            /// <summary>
            /// 年累计使用的应用人数,仅当type=1,2时有效
            /// </summary>
            [XmlElement("use_micro_user_cnt_1y")]
            public long UseMicroUserCnt1y { get; set; }
    
            /// <summary>
            /// 年累计参与智能填表数
            /// </summary>
            [XmlElement("use_smartwork_cnt_1y")]
            public long UseSmartworkCnt1y { get; set; }
}
 
    }
}