NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntMerchantExpandIndirectQu...

31 lines
1.1 KiB
C#
Raw Permalink 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>
/// AntMerchantExpandIndirectQueryModel Data Structure.
/// </summary>
[Serializable]
public class AntMerchantExpandIndirectQueryModel : AopObject
{
/// <summary>
/// 商户编号由机构定义需要保证在机构下唯一如果未传sub_merchant_id ,则必传 external_id 和 org_pid
/// </summary>
[XmlElement("external_id")]
public string ExternalId { get; set; }
/// <summary>
/// 机构pid根据org_pid + external_id 可以唯一确定商户如果未传sub_merchant_id ,则必传 external_id 和 org_pid
/// </summary>
[XmlElement("org_pid")]
public string OrgPid { get; set; }
/// <summary>
/// 商户在支付宝入驻成功后,生成的支付宝内全局唯一的商户编号,如果未传 external_id 和 org_pid则必传sub_merchant_id
/// </summary>
[XmlElement("sub_merchant_id")]
public string SubMerchantId { get; set; }
}
}