using System.Text.Json.Serialization; using System.Collections.Generic; using Topsdk.Util; namespace Topsdk.Top.Ability2474.Domain; public class TaobaoTbkDgVegasSendReportRightsSendRptDTO { /* 渠道关系id的发放数据 */ private IList? relationRptList; /* pid的发放数据 */ private IList? pidRptList; [JsonPropertyName("relation_rpt_list")] public IList? RelationRptList { get => relationRptList; set => this.relationRptList = value; } [JsonPropertyName("pid_rpt_list")] public IList? PidRptList { get => pidRptList; set => this.pidRptList = value; } }