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
601 B
C#
27 lines
601 B
C#
using DS.WMS.Core.Fee.Dtos;
|
|
|
|
namespace DS.WMS.Core.Application.Dtos
|
|
{
|
|
/// <summary>
|
|
/// 编号查询
|
|
/// </summary>
|
|
public class NumberQuery
|
|
{
|
|
/// <summary>
|
|
/// 编号(主提单号、委托编号、客户编号、订舱编号)
|
|
/// </summary>
|
|
public string? Number { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 发票申请查询条件
|
|
/// </summary>
|
|
public class InvoiceApplicationQuery : NumberQuery
|
|
{
|
|
/// <summary>
|
|
/// 费用范围
|
|
/// </summary>
|
|
public FeeRange? FeeRange { get; set; }
|
|
}
|
|
}
|