初始提交
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user