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.
27 lines
624 B
C#
27 lines
624 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<PaymentApplicationDetailDto>? Details { get; set; }
|
|
|
|
}
|
|
}
|