using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// OrderItem数据说明 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class MeiTuanOrderListDetail { /// /// erp方菜品id,等价于eDishCode /// [JsonProperty(PropertyName = "app_food_code")] public string App_food_code { get; set; } /// /// 餐盒数量,例如一份菜A需要1个餐盒,订单中点了2份菜A,餐盒数量为2 /// [JsonProperty(PropertyName = "box_num")] public decimal Box_num { get; set; } /// /// 餐盒单价 /// [JsonProperty(PropertyName = "box_price")] public decimal Box_price { get; set; } /// /// 菜品名称 /// [JsonProperty(PropertyName = "food_name")] public string Food_name { get; set; } /// /// 价格,菜品原价 /// [JsonProperty(PropertyName = "price")] public decimal Price { get; set; } /// /// erp方菜品sk /// [JsonProperty(PropertyName = "sku_id")] public string Sku_id { get; set; } /// /// 菜品份数 /// [JsonProperty(PropertyName = "quantity")] public string Quantity { get; set; } /// /// 单位 /// [JsonProperty(PropertyName = "unit")] public string Unit { get; set; } /// /// 规格 /// [JsonProperty(PropertyName = "spec")] public string Spec { get; set; } /// /// 做法 /// [JsonProperty(PropertyName = "food_property")] public string Food_property { get; set; } /// /// erp方菜品id,等价于eDishCode /// [JsonProperty(PropertyName = "cart_id")] public int Cart_id { get; set; } } }