using System.Text.Json.Serialization; using System.Collections.Generic; using Topsdk.Util; namespace Topsdk.Top.Ability3261.Domain; public class TaobaoTbkDgCpaActivityReportPageResult { /* 数据列表 */ private IList? results; [JsonPropertyName("results")] public IList? Results { get => results; set => this.results = value; } }