using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlisisReportRow Data Structure.
///
[Serializable]
public class AlisisReportRow : AopObject
{
///
/// 报表行信息,每个对象是一列的数据
///
[XmlArray("row_data")]
[XmlArrayItem("alisis_report_column")]
public List RowData { get; set; }
}
}