using DS.Module.Core;
namespace DS.WMS.Core.Fee.Dtos
{
///
/// 汇率转换信息
///
public class ExchangeRate
{
///
/// 原币别
///
public string CurrencyFrom { get; set; } = string.Empty;
///
/// 目标币别
///
public string CurrencyTo { get; set; } = string.Empty;
///
/// 费用类型(用于指定应收/应付汇率)
///
public FeeType? FeeType { get; set; }
///
/// 转换汇率
///
public decimal Rate { get; set; }
///
/// 反向汇率
///
public decimal ReverseRate { get; set; }
}
}