using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOfflineMarketProductBatchqueryModel Data Structure. /// [Serializable] public class AlipayOfflineMarketProductBatchqueryModel : AopObject { /// /// 操作人角色,默认商户操作:MERCHANT;服务商操作:PROVIDER。支付宝内部使用,外部商户不需填写此字段。 /// [XmlElement("op_role")] public string OpRole { get; set; } /// /// 页码,留空标示第一页,默认100个结果为一页 /// [XmlElement("page_no")] public string PageNo { get; set; } /// /// 门店ID。支付宝内部使用,外部商户不需填写此字段。 /// [XmlElement("shop_id")] public string ShopId { get; set; } } }