using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// KoubeiQualityTestCloudacptBatchQueryResponse. /// public class KoubeiQualityTestCloudacptBatchQueryResponse : AopResponse { /// /// 活动id /// [XmlElement("activity_id")] public string ActivityId { get; set; } /// /// 批次列表 /// [XmlArray("batch_list")] [XmlArrayItem("open_batch")] public List BatchList { get; set; } /// /// 单品批次数 /// [XmlElement("batch_num")] public string BatchNum { get; set; } } }