using System.Text.Json.Serialization; using System.Collections.Generic; using Topsdk.Util; namespace Topsdk.Top.Ability382.Domain; public class TaobaoTbkDgVegasSendStatusData { /* 返回结果封装对象 */ private IList? resultList; [JsonPropertyName("result_list")] public IList? ResultList { get => resultList; set => this.resultList = value; } }