NewGaoKaoApi/PaymentSDK/AliPay/Domain/SettleEntity.cs

25 lines
812 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>
/// SettleEntity Data Structure.
/// </summary>
[Serializable]
public class SettleEntity : AopObject
{
/// <summary>
/// 结算主体账号 当结算主体类型为SecondMerchant本参数为二级商户的SecondMerchantID当结算主体类型为MerchantStore本参数为商户门店ID。
/// </summary>
[XmlElement("settle_entity_id")]
public string SettleEntityId { get; set; }
/// <summary>
/// 结算主体类型 SecondMerchant结算主体为二级商户MerchantStore结算主体为商户门店
/// </summary>
[XmlElement("settle_entity_type")]
public string SettleEntityType { get; set; }
}
}