using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// IsvMerchantInfo Data Structure. /// [Serializable] public class IsvMerchantInfo : AopObject { /// /// 商户pid /// [XmlElement("partner_id")] public string PartnerId { get; set; } /// /// 门店ID列表 /// [XmlArray("shop_ids")] [XmlArrayItem("string")] public List ShopIds { get; set; } } }