namespace DS.WMS.Core.Invoice.Dtos
{
///
/// 按发票申请开票的请求项
///
public class RequestItem
{
///
/// 发票申请ID
///
public long ApplicationId { get; set; }
///
/// 发票申请币别
///
public string Currency { get; set; }
///
/// 折算汇率
///
public decimal? ExchangeRate { get; set; }
}
}