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