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