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