using System.Collections.Generic; using Newtonsoft.Json; using Alipay.AopSdk.Core.Domain; namespace Alipay.AopSdk.Core.Response { /// /// KoubeiQualityTestCloudacptItemQueryResponse. /// public class KoubeiQualityTestCloudacptItemQueryResponse : AopResponse { /// /// 活动id /// [JsonProperty("activity_id")] public string ActivityId { get; set; } /// /// 批次id /// [JsonProperty("batch_id")] public string BatchId { get; set; } /// /// 批次状态 0,未检测 1,检测中 2,未通过 3,已通过 /// [JsonProperty("batch_status")] public string BatchStatus { get; set; } /// /// 失败单品书列表 /// [JsonProperty("fail_list")] public List FailList { get; set; } /// /// 失败数 /// [JsonProperty("fail_num")] public string FailNum { get; set; } /// /// 单品列表 /// [JsonProperty("item_list")] public List ItemList { get; set; } /// /// 单品数 /// [JsonProperty("item_num")] public string ItemNum { get; set; } /// /// 通过单品列表 /// [JsonProperty("pass_list")] public List PassList { get; set; } /// /// 通过数 /// [JsonProperty("pass_num")] public string PassNum { get; set; } } }