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.

32 lines
767 B
C#

using DS.WMS.Core.Application.Dtos;
namespace DS.WMS.Core.Invoice.Dtos
{
/// <summary>
/// 提交开票请求参数
/// </summary>
public class InvoiceRequest<TEntity> where TEntity : Entity.Invoice
{
/// <summary>
/// 发票主体
/// </summary>
public TEntity Invoice { get; set; }
/// <summary>
/// 发票申请
/// </summary>
public List<RequestItem>? Applications { get; set; }
/// <summary>
/// 按业务自由开票
/// </summary>
public List<FeeClient>? BizList { get; set; }
/// <summary>
/// 按费用自由开票
/// </summary>
public List<PaymentApplicationDetailDto>? Details { get; set; }
}
}