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
526 B
C#
24 lines
526 B
C#
namespace DS.WMS.Core.Invoice.Dtos
|
|
{
|
|
/// <summary>
|
|
/// 按发票申请开票的请求项
|
|
/// </summary>
|
|
public class RequestItem
|
|
{
|
|
/// <summary>
|
|
/// 发票申请ID
|
|
/// </summary>
|
|
public long ApplicationId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发票申请币别
|
|
/// </summary>
|
|
public string Currency { get; set; }
|
|
|
|
/// <summary>
|
|
/// 折算汇率
|
|
/// </summary>
|
|
public decimal? ExchangeRate { get; set; }
|
|
}
|
|
}
|