using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiEnterpriseSubareaTotaldataStatResponse. /// public class OapiEnterpriseSubareaTotaldataStatResponse : DingTalkResponse { /// /// 错误码 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 错误信息 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 系统自动生成 /// [XmlArray("result")] [XmlArrayItem("area_stat_data_v_o")] public List Result { get; set; } /// /// 是否成功 /// [XmlElement("success")] public bool Success { get; set; } /// /// AreaStatDataVODomain Data Structure. /// [Serializable] public class AreaStatDataVODomain : TopObject { /// /// 所辖区域活跃率 /// [XmlElement("act_ratio_1d")] public string ActRatio1d { get; set; } /// /// 活跃用户数最近1天 /// [XmlElement("act_usr_cn_1d")] public string ActUsrCn1d { get; set; } /// /// 历史截至当日激活会员数 /// [XmlElement("active_mbr_cnt_std")] public string ActiveMbrCntStd { get; set; } /// /// 所辖区域用户的激活率 /// [XmlElement("active_mbr_ratio")] public string ActiveMbrRatio { get; set; } /// /// 所属城市维度 /// [XmlElement("city_lat")] public string CityLat { get; set; } /// /// 所属城市经度 /// [XmlElement("city_lng")] public string CityLng { get; set; } /// /// 城市名称 /// [XmlElement("city_name")] public string CityName { get; set; } /// /// 企业ID /// [XmlElement("corp_id")] public string CorpId { get; set; } /// /// 区/县纬度 /// [XmlElement("county_lat")] public string CountyLat { get; set; } /// /// 区/县经度 /// [XmlElement("county_lng")] public string CountyLng { get; set; } /// /// 城市所在区域 /// [XmlElement("county_name")] public string CountyName { get; set; } /// /// 历史截至当日企业会员数 /// [XmlElement("mbr_cnt_std")] public string MbrCntStd { get; set; } /// /// 所辖区域在线组织数 /// [XmlElement("online_org_cnt")] public string OnlineOrgCnt { get; set; } /// /// 所辖区域组织覆盖率 /// [XmlElement("org_online_ratio")] public string OrgOnlineRatio { get; set; } /// /// 所辖区域实际组织数 /// [XmlElement("real_org_cnt")] public string RealOrgCnt { get; set; } /// /// 发送消息数量 /// [XmlElement("send_message_cnt_1d")] public string SendMessageCnt1d { get; set; } /// /// 发送消息人数 /// [XmlElement("send_message_user_cnt_1d")] public string SendMessageUserCnt1d { get; set; } /// /// 查询时间 /// [XmlElement("stat_date")] public string StatDate { get; set; } } } }