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.

65 lines
1.6 KiB
C#

9 months ago
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.GuangChang
{
/// <summary>
/// 订单列表
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class VposOrderListRequest
{
/// <summary>
/// 门店ID
/// </summary>
[JsonProperty(PropertyName = "storeId")]
public string StoreId { get; set; }
/// <summary>
/// 状态 0全部1待支付2已完成
/// </summary>
[JsonProperty(PropertyName = "status")]
public int Status { get; set; }
/// <summary>
/// 页码
/// </summary>
[JsonProperty(PropertyName = "pageNumber")]
public int PageNumber { get; set; }
/// <summary>
/// 每页数
/// </summary>
[JsonProperty(PropertyName = "pageSize")]
public int PageSize { get; set; }
/// <summary>
/// 门店ID
/// </summary>
[JsonProperty(PropertyName = "mobile")]
public string Mobile { get; set; }
/// <summary>
/// 取餐号
/// </summary>
[JsonProperty(PropertyName = "seqNo")]
public string SeqNo { get; set; }
/// <summary>
/// 开始时间
/// </summary>
[JsonProperty(PropertyName = "startTime")]
public string StartTime { get; set; }
/// <summary>
/// 结束时间
/// </summary>
[JsonProperty(PropertyName = "endTime")]
public string EndTime { get; set; }
}
}