using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// IsvMerchantInfo Data Structure. /// [Serializable] public class IsvMerchantInfo : AopObject { /// /// 商户pid /// [JsonProperty("partner_id")] public string PartnerId { get; set; } /// /// 门店ID列表 /// [JsonProperty("shop_ids")] public List ShopIds { get; set; } } }