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.

70 lines
1.6 KiB
C#

using DS.Module.Core.Enums;
using DS.Module.Core.PageQuery;
namespace DS.WMS.Core.Application.Dtos
{
/// <summary>
/// 付费申请列表查询条件
/// </summary>
public class PaymentApplicationListQuery : QueryModel
{
/// <summary>
/// 业务编号
/// </summary>
public string? BillNO { get; set; }
/// <summary>
/// 申请单编号
/// </summary>
public string? ApplicaitionNO { get; set; }
/// <summary>
/// 结算单位
/// </summary>
public long? CustomerId { get; set; }
/// <summary>
/// 申请单状态
/// </summary>
public PaymentApplicationStatus? Status { get; set; }
/// <summary>
/// 发票备注
/// </summary>
public string? InvoiceRemark { get; set; }
/// <summary>
/// 付费申请日期(从)
/// </summary>
public DateTime? PaymentDateStart { get; set; }
/// <summary>
/// 付费申请日期(至)
/// </summary>
public DateTime? PaymentDateEnd { get; set; }
/// <summary>
/// 申请人
/// </summary>
public long? CreateBy { get; set; }
}
public enum AuditStatusForQuery
{
/// <summary>
/// 未审核
/// </summary>
Pending = 1,
/// <summary>
/// 已审核
/// </summary>
Audited = 2,
/// <summary>
/// 仅需自己审核
/// </summary>
MarkerOnly = 3
}
}