using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Stock { /// /// 经营会计报表详情 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class StoreCostTicketSalesinfoResponse { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 门店编号 /// [JsonProperty(PropertyName = "storeNo")] public string StoreNo { get; set; } /// /// 门店名称 /// [JsonProperty(PropertyName = "storeName")] public string StoreName { get; set; } /// /// 门店名称 /// [JsonProperty(PropertyName = "amount")] public decimal Amount { get; set; } /// /// 门店名称 /// [JsonProperty(PropertyName = "discountAmount")] public decimal DiscountAmount { get; set; } /// /// 应收金额 /// [JsonProperty(PropertyName = "receivableAmount")] public decimal ReceivableAmount { get; set; } /// /// 餐盒费 /// [JsonProperty(PropertyName = "boxAmount")] public decimal BoxAmount { get; set; } /// /// 员工餐 /// [JsonProperty(PropertyName = "workerAmount")] public decimal WorkerAmount { get; set; } /// /// 客单价 /// [JsonProperty(PropertyName = "peoplePrice")] public decimal PeoplePrice { get; set; } /// /// 汇总日期 /// [JsonProperty(PropertyName = "summaryDate")] public string SummaryDate { get; set; } /// /// 单数 /// [JsonProperty(PropertyName = "ticketCount")] public string TicketCount { get; set; } /// /// 支付汇总 /// [JsonProperty(PropertyName = "payTypeList")] public List PayTypeList { get; set; } /// /// 商品类别汇总 /// [JsonProperty(PropertyName = "productTypeList")] public List ProductTypeList { get; set; } /// /// 单品销售信息 /// [JsonProperty(PropertyName = "productList")] public List ProductList { get; set; } } }