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.
24 lines
618 B
C#
24 lines
618 B
C#
using DS.WMS.Core.Application.Dtos;
|
|
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<PaymentApplicationDetailDto>? Details { get; set; }
|
|
|
|
//public List<PaymentApplicationDtoV2> Applications { get; set; }
|
|
}
|
|
}
|