NewGaoKaoApi/PaymentSDK/AliPay/Domain/InstCashPoolAccountMappingV...

43 lines
1.1 KiB
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>
/// InstCashPoolAccountMappingVO Data Structure.
/// </summary>
[Serializable]
public class InstCashPoolAccountMappingVO : AopObject
{
/// <summary>
/// 资金池唯一标识
/// </summary>
[XmlElement("cash_pool_id")]
public string CashPoolId { get; set; }
/// <summary>
/// 当前机构账户
/// </summary>
[XmlElement("inst_account")]
public InstAccountDTO InstAccount { get; set; }
/// <summary>
/// 当前账号是否为资金池主账号Y是N不是
/// </summary>
[XmlElement("main_account")]
public string MainAccount { get; set; }
/// <summary>
/// 操作员
/// </summary>
[XmlElement("operator")]
public string Operator { get; set; }
/// <summary>
/// 父账号
/// </summary>
[XmlElement("parent_inst_account")]
public InstAccountDTO ParentInstAccount { get; set; }
}
}