using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiEnterpriseMainorgTotaldataStatResponse. /// public class OapiEnterpriseMainorgTotaldataStatResponse : DingTalkResponse { /// /// 错误码 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 错误信息 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 系统自动生成 /// [XmlArray("result")] [XmlArrayItem("main_stat_data_vo")] public List Result { get; set; } /// /// 是否成功 /// [XmlElement("success")] public bool Success { get; set; } /// /// MainStatDataVoDomain Data Structure. /// [Serializable] public class MainStatDataVoDomain : TopObject { /// /// 在线组织激活用户数 /// [XmlElement("active_mbr_cnt_std")] public string ActiveMbrCntStd { get; set; } /// /// 全员群数量 /// [XmlElement("all_group_cnt")] public string AllGroupCnt { get; set; } /// /// 最近1天降低碳排量G /// [XmlElement("carbon_amount_1d")] public string CarbonAmount1d { get; set; } /// /// 最近7天降低碳排量G /// [XmlElement("carbon_amount_1w")] public string CarbonAmount1w { get; set; } /// /// 企业ID /// [XmlElement("corp_id")] public string CorpId { get; set; } /// /// 部门群数量 /// [XmlElement("dept_group_cnt")] public string DeptGroupCnt { get; set; } /// /// 最近1天钉办节约小时 /// [XmlElement("ding_save_hour_1d")] public string DingSaveHour1d { get; set; } /// /// 最近7天钉办节约小时 /// [XmlElement("ding_save_hour_1w")] public string DingSaveHour1w { get; set; } /// /// 最近7天发送消息人数 /// [XmlElement("end_message_user_cnt_1w")] public string EndMessageUserCnt1w { get; set; } /// /// 内部群数量 /// [XmlElement("innerGroupCnt")] public string InnerGroupCnt { get; set; } /// /// 最近1天成功发起直播次数 /// [XmlElement("liveLaunchSuccCnt1d")] public string LiveLaunchSuccCnt1d { get; set; } /// /// 最近7天成功发起直播次数 /// [XmlElement("liveLaunchSuccCnt1w")] public string LiveLaunchSuccCnt1w { get; set; } /// /// 在线组织通讯录人数 /// [XmlElement("mbr_cnt_std")] public string MbrCntStd { get; set; } /// /// 最近1天在线会议次数 /// [XmlElement("online_conference_cnt_1d")] public string OnlineConferenceCnt1d { get; set; } /// /// 最近7天在线会议次数 /// [XmlElement("online_conference_cnt_7d")] public string OnlineConferenceCnt7d { get; set; } /// /// 在线组织数 /// [XmlElement("online_org_nt")] public string OnlineOrgNt { get; set; } /// /// 组织覆盖率 /// [XmlElement("org_online_ratio")] public string OrgOnlineRatio { get; set; } /// /// 实际组织数 /// [XmlElement("real_org_cnt")] public string RealOrgCnt { get; set; } /// /// 最近1天接收DING的用户数 /// [XmlElement("receive_ding_user_cnt_1d")] public string ReceiveDingUserCnt1d { get; set; } /// /// 最近7天接收DING的用户数 /// [XmlElement("receive_ding_user_cnt_1w")] public string ReceiveDingUserCnt1w { get; set; } /// /// 关联组织数 /// [XmlElement("rel_org_nt")] public string RelOrgNt { get; set; } /// /// 最近1天发送消息人数 /// [XmlElement("send_message_user_cnt_1d")] public string SendMessageUserCnt1d { get; set; } /// /// 统计日期 /// [XmlElement("stat_date")] public string StatDate { get; set; } } } }