using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// ReportDataItem Data Structure.
///
[Serializable]
public class ReportDataItem : AopObject
{
///
/// 表示一行数据,每个对象是一列的数据
///
[XmlElement("row_data")]
public string RowData { get; set; }
}
}