38 lines
800 B
C#
38 lines
800 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace Alipay.AopSdk.Core.Domain
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// AlisisReport Data Structure.
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public class AlisisReport : AopObject
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// : 报表可过滤字段条件
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("conditions")]
|
|||
|
|
|
|||
|
|
public List<ReportCondition> Conditions { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 报表描述
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("report_desc")]
|
|||
|
|
public string ReportDesc { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 报表名称
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("report_name")]
|
|||
|
|
public string ReportName { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 报表唯一标识
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("report_uk")]
|
|||
|
|
public string ReportUk { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|