using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiEnterpriseFamilydrListResponse. /// public class OapiEnterpriseFamilydrListResponse : 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 { /// /// 企业ID /// [XmlElement("corp_id")] public string CorpId { get; set; } /// /// 二级部门名称 /// [XmlElement("dept_name_lv2")] public string DeptNameLv2 { get; set; } /// /// 三级部门名称 /// [XmlElement("dept_name_lv3")] public string DeptNameLv3 { get; set; } /// /// 最近1天成功发起直播人数 /// [XmlElement("live_launch_succ_user_cnt_1d")] public string LiveLaunchSuccUserCnt1d { get; set; } /// /// 最近7天成功发起直播人数 /// [XmlElement("live_launch_succ_user_cnt_1w")] public string LiveLaunchSuccUserCnt1w { get; set; } /// /// 最近1天观看直播人数 /// [XmlElement("live_play_user_cnt_1d")] public string LivePlayUserCnt1d { get; set; } /// /// 最近7天观看直播人数 /// [XmlElement("live_play_user_cnt_1w")] public string LivePlayUserCnt1w { get; set; } /// /// 查询时间 /// [XmlElement("stat_date")] public string StatDate { get; set; } } } }