namespace DS.WMS.Core.Settlement.Dtos
{
///
/// 付费结算
///
public class PaymentSettlementDto : SettlementDto
{
///
/// 记账资料币别
///
public string? AccountCurrency { get; set; }
///
/// 记账资料汇率
///
public decimal? AccountRate { get; set; }
///
/// 记账资料金额
///
public decimal? AccountAmount { get; set; }
///
/// 预收支资料币别
///
public string? PrePayCurrency { get; set; }
///
/// 预收支资料汇率
///
public decimal? PrePayRate { get; set; }
///
/// 预收支资料金额
///
public decimal? PrePayAmount { get; set; }
///
/// 实收支资料币别
///
public string? AHSRCurrency { get; set; }
///
/// 实收支资料汇率
///
public decimal? AHSRRate { get; set; }
///
/// 实收支资料金额
///
public decimal? AHSRAmount { get; set; }
///
/// 财务费用币别
///
public string? FinancialCurrency { get; set; }
///
/// 财务费用汇率
///
public decimal? FinancialRate { get; set; }
///
/// 财务费用金额
///
public decimal? FinancialAmount { get; set; }
///
/// 预收支支取币别
///
public string? AdvanceCurrency { get; set; }
///
/// 预收支支取汇率
///
public decimal? AdvanceRate { get; set; }
///
/// 预收支支取金额
///
public decimal? AdvanceAmount { get; set; }
}
}