NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOfflineMarketProductB...

31 lines
950 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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