using DS.WMS.Core.Application.Dtos;
namespace DS.WMS.Core.Settlement.Dtos
{
///
/// 结算明细DTO
///
public class SettlementDetailDto : ApplicationDetailDto
{
///
/// 结算金额
///
public decimal SettlementAmount { get; set; }
///
/// 发票号
///
public string? InvoiceNO { get; set; }
}
}