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.
36 lines
862 B
36 lines
862 B
namespace QuanTan.SDK.Models.Supplier
|
|
{
|
|
public class QuanTan_Supplier_QueryOrderReuqest
|
|
{
|
|
public string storeId { get; set; }
|
|
|
|
public string stockType { get; set; }
|
|
|
|
public DateTime? createStart { get; set; }
|
|
|
|
public DateTime? createEnd { get; set; }
|
|
|
|
public DateTime? updateStart { get; set; }
|
|
|
|
public DateTime? updateEnd { get; set; }
|
|
|
|
public int page { get; set; }
|
|
|
|
public int pageSize { get; set; }
|
|
|
|
/// <summary>
|
|
/// 排序字段 (create_time,update_time)
|
|
/// </summary>
|
|
public string order { get; set; }
|
|
|
|
/// <summary>
|
|
/// 排序方式 (asc,desc)
|
|
/// </summary>
|
|
public string orderBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订单Id
|
|
/// </summary>
|
|
public string orderId { get; set; }
|
|
}
|
|
}
|
|
|