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.
21 lines
454 B
C#
21 lines
454 B
C#
using DS.WMS.Core.Application.Dtos;
|
|
|
|
namespace DS.WMS.Core.Settlement.Dtos
|
|
{
|
|
/// <summary>
|
|
/// 结算明细DTO
|
|
/// </summary>
|
|
public class SettlementDetailDto : ApplicationDetailDto
|
|
{
|
|
/// <summary>
|
|
/// 结算金额
|
|
/// </summary>
|
|
public decimal SettlementAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发票号
|
|
/// </summary>
|
|
public string? InvoiceNO { get; set; }
|
|
}
|
|
}
|