You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
820 B
C#
36 lines
820 B
C#
using DS.Module.Core;
|
|
|
|
namespace DS.WMS.Core.Fee.Dtos
|
|
{
|
|
/// <summary>
|
|
/// 汇率转换信息
|
|
/// </summary>
|
|
public class ExchangeRate
|
|
{
|
|
/// <summary>
|
|
/// 原币别
|
|
/// </summary>
|
|
public string CurrencyFrom { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 目标币别
|
|
/// </summary>
|
|
public string CurrencyTo { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 费用类型(用于指定应收/应付汇率)
|
|
/// </summary>
|
|
public FeeType? FeeType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 转换汇率
|
|
/// </summary>
|
|
public decimal Rate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 反向汇率
|
|
/// </summary>
|
|
public decimal ReverseRate { get; set; }
|
|
}
|
|
}
|