using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.OtherWaiMai { /// /// 套餐组合明细 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class BaiduProductComboGroupDetail { /// /// 百度配料ID /// [JsonProperty(PropertyName = "baidu_product_id")] public string Baidu_product_id { get; set; } /// /// 第三方配料ID /// [JsonProperty(PropertyName = "product_id")] public string Product_id { get; set; } /// /// 配料名称 /// [JsonProperty(PropertyName = "product_name")] public string Product_name { get; set; } /// /// 配料类型 /// [JsonProperty(PropertyName = "product_type")] public string Product_type { get; set; } /// /// 配料数量 /// [JsonProperty(PropertyName = "product_amount")] public int Product_amount { get; set; } /// /// 配料总价格 /// [JsonProperty(PropertyName = "product_fee")] public int Product_fee { get; set; } /// /// 配料价格 /// [JsonProperty(PropertyName = "product_price")] public int Product_price { get; set; } } }