using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOverseasTravelRateCurrencyBatchqueryModel Data Structure. /// [Serializable] public class AlipayOverseasTravelRateCurrencyBatchqueryModel : AopObject { /// /// 业务类型: 1.MBARCODE(支持境外当面付的币种); 2.CLASS_RATE(支持分级汇率的币种); 3.为空时默认查询所有的币种; /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 业务扩展参数 /// [XmlElement("extend_param")] public string ExtendParam { get; set; } } }