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.

47 lines
1.3 KiB
C#

9 months ago
using System;
using System.ComponentModel.DataAnnotations;
9 months ago
namespace EntrustSettle.Model.Dtos
9 months ago
{
/// <summary>
/// 订单列表查询参数Dto
/// </summary>
9 months ago
public class OrderListInputDto : PaginationModel
9 months ago
{
9 months ago
/// <summary>
/// 查询类型 1客户订单管理台账 2运营端台账
/// </summary>
[Required]
public byte QueryType { get; set; }
9 months ago
/// <summary>
/// 提单号
/// </summary>
public string Mblno { get; set; }
/// <summary>
/// 公司名称
/// </summary>
public string CompanyName { get; set; }
/// <summary>
/// 业务类型 1:港杂费 2:堆存费
/// </summary>
public byte? BusinessType { get; set; }
/// <summary>
/// 当前业务状态
9 months ago
/// </summary>
public OrderStatusEnum? Status { get; set; }
9 months ago
/// <summary>
/// 按下单时间查询的开始时间
/// </summary>
public DateTime? CreateTimeStart { get; set; }
/// <summary>
/// 按下单时间查询的结束时间
/// </summary>
public DateTime? CreateTimeEnd { get; set; }
/// <summary>
/// 客户备注
/// </summary>
public string Remark { get; set; }
}
9 months ago
}