using System.Collections.Generic; using Newtonsoft.Json; using Alipay.AopSdk.Core.Domain; namespace Alipay.AopSdk.Core.Response { /// /// KoubeiQualityTestCloudacptBatchQueryResponse. /// public class KoubeiQualityTestCloudacptBatchQueryResponse : AopResponse { /// /// 活动id /// [JsonProperty("activity_id")] public string ActivityId { get; set; } /// /// 批次列表 /// [JsonProperty("batch_list")] public List BatchList { get; set; } /// /// 单品批次数 /// [JsonProperty("batch_num")] public string BatchNum { get; set; } } }