using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// KoubeiMarketingDataAlisisReportQueryResponse. /// public class KoubeiMarketingDataAlisisReportQueryResponse : AopResponse { /// /// 报表数据 /// [XmlArray("report_data")] [XmlArrayItem("alisis_report_row")] public List ReportData { get; set; } } }