using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// ExRefRateInfoVO Data Structure.
///
[Serializable]
public class ExRefRateInfoVO : AopObject
{
///
/// 货币对
///
[XmlElement("currency_pair")]
public string CurrencyPair { get; set; }
///
/// 基础币种
///
[XmlElement("datum_currency")]
public string DatumCurrency { get; set; }
///
/// 牌价类型,表示站在用户角度,对目标币种的交易方向,01表示买入,02表示卖出
///
[XmlElement("price_type")]
public string PriceType { get; set; }
///
/// 报价日期,格式为YYYYMMDD
///
[XmlElement("pub_date")]
public string PubDate { get; set; }
///
/// 报价时间
///
[XmlElement("pub_time")]
public string PubTime { get; set; }
///
/// 汇率,表示一单位基准币种等于多少目标币种,小数点后最多精确到8位
///
[XmlElement("rate")]
public string Rate { get; set; }
///
/// 目标币种
///
[XmlElement("target_currency")]
public string TargetCurrency { get; set; }
}
}