Files
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

18 lines
373 B
C#

using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// ReportDataItem Data Structure.
/// </summary>
[Serializable]
public class ReportDataItem : AopObject
{
/// <summary>
/// 表示一行数据,每个对象是一列的数据
/// </summary>
[JsonProperty("row_data")]
public string RowData { get; set; }
}
}