|
|
|
@ -1,4 +1,5 @@
|
|
|
|
|
using DS.WMS.Core.Application.Dtos;
|
|
|
|
|
using DS.WMS.Core.Fee.Dtos;
|
|
|
|
|
using DS.WMS.Core.Settlement.Entity;
|
|
|
|
|
|
|
|
|
|
namespace DS.WMS.Core.Settlement.Dtos
|
|
|
|
@ -14,10 +15,29 @@ namespace DS.WMS.Core.Settlement.Dtos
|
|
|
|
|
public TEntity Settlement { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 结算费用明细
|
|
|
|
|
/// 结算费用明细(付费申请结算用)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<PaymentApplicationDetailDto>? Details { get; set; }
|
|
|
|
|
|
|
|
|
|
//public List<PaymentApplicationDtoV2> Applications { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发票结算信息(发票结算用)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public InvoiceSettlement[]? Invoices { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发票结算信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class InvoiceSettlement
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发票ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long Id { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 汇率信息(当发票币别与结算币别一致时,此字段可为null)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ExchangeRate? ExchangeRate { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|