using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// KoubeiRetailShopitemBatchqueryResponse. /// public class KoubeiRetailShopitemBatchqueryResponse : AopResponse { /// /// 店铺商品集合 /// [XmlArray("shopitemlist")] [XmlArrayItem("ext_shop_item")] public List Shopitemlist { get; set; } } }