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
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
 
namespace DingTalk.Api.Response
{
    /// <summary>
    /// OapiEnterpriseSuborgTotaldataStatResponse.
    /// </summary>
    public class OapiEnterpriseSuborgTotaldataStatResponse : DingTalkResponse
    {
        /// <summary>
        /// 错误码
        /// </summary>
        [XmlElement("errcode")]
        public long Errcode { get; set; }
 
        /// <summary>
        /// 错误信息
        /// </summary>
        [XmlElement("errmsg")]
        public string Errmsg { get; set; }
 
        /// <summary>
        /// 系统自动生成
        /// </summary>
        [XmlArray("result")]
        [XmlArrayItem("family_doctor_data_vo")]
        public List<FamilyDoctorDataVoDomain> Result { get; set; }
 
        /// <summary>
        /// 是否成功
        /// </summary>
        [XmlElement("success")]
        public bool Success { get; set; }
 
    /// <summary>
/// FamilyDoctorDataVoDomain Data Structure.
/// </summary>
[Serializable]
 
public class FamilyDoctorDataVoDomain : TopObject
{
            /// <summary>
            /// 最近1天活跃率
            /// </summary>
            [XmlElement("act_ratio_1d")]
            public string ActRatio1d { get; set; }
    
            /// <summary>
            /// 最近7天活跃率
            /// </summary>
            [XmlElement("act_ratio_1w")]
            public string ActRatio1w { get; set; }
    
            /// <summary>
            /// 活跃用户数最近1天
            /// </summary>
            [XmlElement("act_usr_cnt_1d")]
            public string ActUsrCnt1d { get; set; }
    
            /// <summary>
            /// 最近7天活跃用户数
            /// </summary>
            [XmlElement("act_usr_cnt_1w")]
            public string ActUsrCnt1w { get; set; }
    
            /// <summary>
            /// 历史截至当日激活会员数
            /// </summary>
            [XmlElement("active_mbr_cnt_std")]
            public string ActiveMbrCntStd { get; set; }
    
            /// <summary>
            /// 激活率
            /// </summary>
            [XmlElement("active_ratio")]
            public string ActiveRatio { get; set; }
    
            /// <summary>
            /// 企业ID
            /// </summary>
            [XmlElement("corp_id")]
            public string CorpId { get; set; }
    
            /// <summary>
            /// 最近1天钉钉指数
            /// </summary>
            [XmlElement("ding_index_1d")]
            public string DingIndex1d { get; set; }
    
            /// <summary>
            /// 最近7天钉钉指数
            /// </summary>
            [XmlElement("ding_index_1w")]
            public string DingIndex1w { get; set; }
    
            /// <summary>
            /// 历史截至当日企业会员数
            /// </summary>
            [XmlElement("mbr_cnt_std")]
            public string MbrCntStd { get; set; }
    
            /// <summary>
            /// 最近1天使用钉钉微应用用户比率
            /// </summary>
            [XmlElement("micro_app_use_ratio_1d")]
            public string MicroAppUseRatio1d { get; set; }
    
            /// <summary>
            /// 最近7天使用钉钉微应用用户比率
            /// </summary>
            [XmlElement("micro_app_use_ratio_1w")]
            public string MicroAppUseRatio1w { get; set; }
    
            /// <summary>
            /// 最近1天使用钉钉微应用用户数
            /// </summary>
            [XmlElement("micro_app_user_cnt_1d")]
            public string MicroAppUserCnt1d { get; set; }
    
            /// <summary>
            /// 最近7天使用钉钉微应用用户数
            /// </summary>
            [XmlElement("micro_app_user_cnt_1w")]
            public string MicroAppUserCnt1w { get; set; }
    
            /// <summary>
            /// 审批模板数
            /// </summary>
            [XmlElement("pm_form_cnt_001")]
            public string PmFormCnt001 { get; set; }
    
            /// <summary>
            /// 自定义模板数
            /// </summary>
            [XmlElement("pm_form_cnt_002")]
            public string PmFormCnt002 { get; set; }
    
            /// <summary>
            /// 自定义模板比率
            /// </summary>
            [XmlElement("pm_form_self_def_ratio")]
            public string PmFormSelfDefRatio { get; set; }
    
            /// <summary>
            /// 最近1天使用审批用户数
            /// </summary>
            [XmlElement("process_user_cnt_1d")]
            public string ProcessUserCnt1d { get; set; }
    
            /// <summary>
            /// 最近7天使用审批用户数
            /// </summary>
            [XmlElement("process_user_cnt_1w")]
            public string ProcessUserCnt1w { get; set; }
    
            /// <summary>
            /// 最近1天使用审批的用户比率
            /// </summary>
            [XmlElement("process_user_ratio_1d")]
            public string ProcessUserRatio1d { get; set; }
    
            /// <summary>
            /// 最近7天使用审批的用户比率
            /// </summary>
            [XmlElement("process_user_ratio_1w")]
            public string ProcessUserRatio1w { get; set; }
    
            /// <summary>
            /// 最近1天沟通用户数
            /// </summary>
            [XmlElement("send_message_user_cnt_1d")]
            public string SendMessageUserCnt1d { get; set; }
    
            /// <summary>
            /// 最近7天沟通用户数
            /// </summary>
            [XmlElement("send_message_user_cnt_1w")]
            public string SendMessageUserCnt1w { get; set; }
    
            /// <summary>
            /// 最近1天沟通率
            /// </summary>
            [XmlElement("send_message_user_ratio_1d")]
            public string SendMessageUserRatio1d { get; set; }
    
            /// <summary>
            /// 最近7天沟通率
            /// </summary>
            [XmlElement("send_message_user_ratio_1w")]
            public string SendMessageUserRatio1w { get; set; }
    
            /// <summary>
            /// 查询时间
            /// </summary>
            [XmlElement("stat_date")]
            public string StatDate { get; set; }
    
            /// <summary>
            /// 所辖组织的地理纬度
            /// </summary>
            [XmlElement("sub_org_area_lat")]
            public string SubOrgAreaLat { get; set; }
    
            /// <summary>
            /// 所辖组织的地理经度
            /// </summary>
            [XmlElement("sub_org_area_lng")]
            public string SubOrgAreaLng { get; set; }
    
            /// <summary>
            /// 所辖组织名称
            /// </summary>
            [XmlElement("sub_org_name")]
            public string SubOrgName { get; set; }
}
 
    }
}