using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// KoubeiItemExtitemExistedQueryModel Data Structure. /// [Serializable] public class KoubeiItemExtitemExistedQueryModel : AopObject { /// /// 商品编码列表, 商品编码数量不超过100条。 /// [XmlArray("code_list")] [XmlArrayItem("string")] public List CodeList { get; set; } } }