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.
|
|
|
|
using DS.WMS.Core.Application.Dtos;
|
|
|
|
|
using DS.WMS.Core.Invoice.Dtos;
|
|
|
|
|
using DS.WMS.Core.Op.Entity;
|
|
|
|
|
using DS.WMS.Core.Settlement.Entity;
|
|
|
|
|
|
|
|
|
|
namespace DS.WMS.Core.Settlement.Dtos
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 提交结算单请求参数
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class SettlementRequest<TEntity> where TEntity : SettlementBase
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 结算单
|
|
|
|
|
/// </summary>
|
|
|
|
|
public TEntity Settlement { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 费用明细(自由结算适用)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<FeeDetailDto>? Details { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 结算单据信息(付费申请/发票结算适用)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<SettlementDocument>? Documents { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 结算单据
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class SettlementDocument
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 单据ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long Id { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 仅自由结算使用
|
|
|
|
|
/// </summary>
|
|
|
|
|
public BusinessType? BusinessType { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 费用对象ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long CustomerId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 费用对象名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string? CustomerName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 本次RMB结算金额
|
|
|
|
|
/// </summary>
|
|
|
|
|
public decimal? SettlementRMB { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 本次USD结算金额
|
|
|
|
|
/// </summary>
|
|
|
|
|
public decimal? SettlementUSD { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 本次其他币别结算金额
|
|
|
|
|
/// </summary>
|
|
|
|
|
public decimal? SettlementOther { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 汇率(当收/付申请单币别与结算币别一致时,此字段可为null,发票结算需要提前获取原始币别)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<CurrencyExchangeRate>? ExchangeRates { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|