步步为盈
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
1.4 KiB

3 years ago
using System;
namespace BBWY.Server.Model.Dto
{
public class SearchOrderRequest
{
/// <summary>
/// 当订单号有值时会忽略其余所有条件
/// </summary>
public string OrderId { get; set; }
public long ShopId { get; set; }
public DateTime? StartDate { get; set; }
public DateTime? EndDate { get; set; }
public Enums.OrderState? OrderState { get; set; }
public int PageIndex { get; set; }
public int PageSize { get; set; }
/// <summary>
/// 运单号
/// </summary>
public string Waybill { get; set; }
public string Sku { get; set; }
/// <summary>
/// 货号
/// </summary>
public string ProductNo { get; set; }
/// <summary>
/// 收货人姓名
/// </summary>
public string ContactName { get; set; }
/// <summary>
/// 仅代发
/// </summary>
public bool OnlyDF { get; set; }
/// <summary>
/// 排除刷单
/// </summary>
public bool ExcludeSD { get; set; }
/// <summary>
/// 过滤已取消
/// </summary>
public bool ExcludeCanceled { get; set; }
/// <summary>
/// 是否包含售后单
/// </summary>
public bool? IsContainsAfterSaleOrder { get;set; }
3 years ago
}
}