using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Response { /// /// KoubeiItemExtitemExistedQueryResponse. /// public class KoubeiItemExtitemExistedQueryResponse : AopResponse { /// /// 商品库中存在的商品编码 /// [XmlArray("existed_list")] [XmlArrayItem("string")] public List ExistedList { get; set; } } }