using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.GuangChang { /// /// 美食广场订单详情信息 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class VposOrderDetail { /// /// 订单ID /// [JsonProperty(PropertyName = "id")] public string Id { get; set; } /// /// 企业编号 /// [JsonProperty(PropertyName = "tenantId")] public string TenantId { get; set; } /// /// 会员ID /// [JsonProperty(PropertyName = "memberId")] public string MemberId { get; set; } /// /// 会员openId /// [JsonProperty(PropertyName = "openId")] public string OpenId { get; set; } /// /// 手机号 /// [JsonProperty(PropertyName = "mobile")] public string Mobile { get; set; } /// /// 单据编号 /// [JsonProperty(PropertyName = "no")] public string No { get; set; } /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 门店ID /// [JsonProperty(PropertyName = "storeNo")] public string StoreNo { get; set; } /// /// 门店ID /// [JsonProperty(PropertyName = "storeName")] public string StoreName { get; set; } /// /// 订单状态 /// [JsonProperty(PropertyName = "status")] public int Status { get; set; } /// /// 销售时间 /// [JsonProperty(PropertyName = "saleDate")] public string SaleDate { get; set; } /// /// 销售时间 /// [JsonProperty(PropertyName = "tableNo")] public string TableNo { get; set; } /// /// 销售时间 /// [JsonProperty(PropertyName = "people")] public int People { get; set; } /// /// 营业模式 /// [JsonProperty(PropertyName = "busMode")] public int BusMode { get; set; } /// /// 营业模式说明 /// [JsonIgnore] public string OrderTypeDesc { get; set; } /// /// 订单状态说明 /// [JsonIgnore] public string StatusDesc { get; set; } /// /// 消费金额 /// [JsonProperty(PropertyName = "amount")] public decimal Amount { get; set; } /// /// 优惠率 /// [JsonProperty(PropertyName = "discount")] public decimal Discount { get; set; } /// /// 优惠额 /// [JsonProperty(PropertyName = "discountTotal")] public decimal DiscountTotal { get; set; } /// /// 应收金额 /// [JsonProperty(PropertyName = "receivable")] public decimal Receivable { get; set; } /// /// 抹零金额 /// [JsonProperty(PropertyName = "maling")] public decimal Maling { get; set; } /// /// 是否使用会员卡(0否1是) /// [JsonProperty(PropertyName = "isMember")] public int IsMember { get; set; } /// /// 会员卡号 /// [JsonProperty(PropertyName = "memberNo")] public string MemberNo { get; set; } /// /// 本单积分 /// [JsonProperty(PropertyName = "memberJifen")] public decimal MemberJifen { get; set; } /// /// 设备名称 /// [JsonProperty(PropertyName = "deviceName")] public string DeviceName { get; set; } /// /// 取餐号 /// [JsonProperty(PropertyName = "seqNo")] public string SeqNo { get; set; } /// /// 星期几 /// [JsonProperty(PropertyName = "weeker")] public string Weeker { get; set; } /// /// 订单商品数量 /// [JsonProperty(PropertyName = "ext1")] public string Ext1 { get; set; } /// /// 订单备注 /// [JsonProperty(PropertyName = "ext2")] public string Ext2 { get; set; } /// /// 订单商品 /// [JsonProperty(PropertyName = "orderProduct")] public List OrderProduct { get; set; } /// /// 订单做法 /// [JsonProperty(PropertyName = "makeInfo")] public List MakeInfo { get; set; } /// /// 订单在支付明细 /// [JsonProperty(PropertyName = "payInfo")] public List PayInfo { get; set; } } }