NewGaoKaoApi/PaymentSDK/AliPay/Domain/SubMerchant.cs

25 lines
678 B
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>
/// SubMerchant Data Structure.
/// </summary>
[Serializable]
public class SubMerchant : AopObject
{
/// <summary>
/// 间连受理商户的支付宝商户编号,通过间连商户入驻后得到。间连业务下必传,并且需要按规范传递受理商户编号。
/// </summary>
[XmlElement("merchant_id")]
public string MerchantId { get; set; }
/// <summary>
/// 商户id类型
/// </summary>
[XmlElement("merchant_type")]
public string MerchantType { get; set; }
}
}