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.

19 lines
426 B
C#

namespace DS.WMS.Core.Settlement.Dtos
{
/// <summary>
/// 付费申请列表附加查询条件
/// </summary>
public class ApplicationListQuery
{
/// <summary>
/// 仅未结申请
/// </summary>
public bool UnsettledOnly { get; set; } = true;
/// <summary>
/// 装货港/卸货港
/// </summary>
public long? PortId { get; set; }
}
}