using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AntMerchantExpandShopBatchqueryModel Data Structure. /// [Serializable] public class AntMerchantExpandShopBatchqueryModel : AopObject { /// /// 当前页码 /// [XmlElement("page_no")] public long PageNo { get; set; } /// /// 分页数量, 最大50 /// [XmlElement("page_size")] public long PageSize { get; set; } /// /// 插件业务场景code,预约为SHOP_SERVICE /// [XmlElement("scene")] public string Scene { get; set; } /// /// 线上店ID /// [XmlElement("store_open_id")] public string StoreOpenId { get; set; } } }