using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.OtherWaiMai { /// /// 外卖汇总 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class WaimaiOrderStatisticsRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 开始时间 /// [JsonProperty(PropertyName = "startTime")] public string StartTime { get; set; } /// /// 结束时间 /// [JsonProperty(PropertyName = "endTime")] public string EndTime { get; set; } } }