using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.StoreBusiness { /// /// 获取单品销售汇总 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class SalesOrderSummaryRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 员工工号 /// [JsonProperty(PropertyName = "workerNo")] public string WorkerNo { get; set; } /// /// 员工工号 /// [JsonProperty(PropertyName = "typeIds")] public string TypeIds { get; set; } /// /// 开始时间(格式:yyyy-MM-dd HH:mm:ss) /// [JsonProperty(PropertyName = "startDate")] public string StartDate { get; set; } /// /// 结束时间(格式:yyyy-MM-dd HH:mm:ss) /// [JsonProperty(PropertyName = "endDate")] public string EndDate { get; set; } } }