using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Stock { /// /// 经营会计报表 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class StoreCostTicketResponse { /// /// 企业编号 /// [JsonProperty(PropertyName = "tenantId")] public string TenantId { get; set; } /// /// 单ID /// [JsonProperty(PropertyName = "id")] public string Id { get; set; } /// /// 单号 /// [JsonProperty(PropertyName = "no")] public string No { get; set; } /// /// 门店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 = "description")] public string Description { get; set; } /// /// 单据状态 /// [JsonProperty(PropertyName = "status")] public int Status { get; set; } /// /// 营业额 /// [JsonProperty(PropertyName = "amount")] public decimal Amount { get; set; } /// /// 折扣金额 /// [JsonProperty(PropertyName = "discountAmount")] public decimal DiscountAmount { get; set; } /// /// 餐盒费 /// [JsonProperty(PropertyName = "boxAmount")] public decimal BoxAmount { get; set; } /// /// 员工餐 /// [JsonProperty(PropertyName = "workerAmount")] public decimal WorkerAmount { get; set; } /// /// 汇总日期 /// [JsonProperty(PropertyName = "summaryDate")] public string SummaryDate { get; set; } /// /// 制单人 /// [JsonProperty(PropertyName = "createUser")] public string CreateUser { get; set; } /// /// 制单日期 /// [JsonProperty(PropertyName = "createDate")] public string CreateDate { get; set; } /// /// 审核人 /// [JsonProperty(PropertyName = "checkPeople")] public string CheckPeople { get; set; } /// /// 审核日期 /// [JsonProperty(PropertyName = "checkDate")] public string CheckDate { get; set; } /// /// 单数 /// [JsonProperty(PropertyName = "ticketCount")] public int TicketCount { get; set; } /// /// 客单价 /// [JsonProperty(PropertyName = "peoplePrice")] public decimal PeoplePrice { get; set; } /// /// 纯利润 /// [JsonProperty(PropertyName = "profit")] public decimal Profit { get; set; } /// /// 今日总成本 /// [JsonProperty(PropertyName = "totalCost")] public decimal TotalCost { get; set; } /// /// 成本差额 /// [JsonProperty(PropertyName = "difTotalCost")] public decimal DifTotalCost { get; set; } /// /// 状态名称 /// [JsonIgnore] public string StatusName { get; set; } /// /// 应收金额 /// [JsonProperty(PropertyName = "receivableAmount")] public decimal ReceivableAmount { get; set; } } }