NewGaoKaoApi/PaymentSDK/AliPay/Domain/MultiCurrencyMoneyVO.cs

25 lines
726 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>
/// MultiCurrencyMoneyVO Data Structure.
/// </summary>
[Serializable]
public class MultiCurrencyMoneyVO : AopObject
{
/// <summary>
/// 金额,默认单位是人民币,精确到小数点两位,单位元
/// </summary>
[XmlElement("amt")]
public string Amt { get; set; }
/// <summary>
/// 币种枚举值1.CNY人民币2.USD美元3.HKD港元4.TWD台币5.EUR欧元6.GBP英镑7.JPY日元
/// </summary>
[XmlElement("currency_code")]
public string CurrencyCode { get; set; }
}
}