using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// KoubeiRetailShopitemBatchqueryModel Data Structure. /// [Serializable] public class KoubeiRetailShopitemBatchqueryModel : AopObject { /// /// 查询店铺商品查询入参 /// [XmlArray("shop_items")] [XmlArrayItem("request_ext_shop_item_query")] public List ShopItems { get; set; } } }