using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.OtherWaiMai { /// /// 特价菜(单品) /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class BaiduOrderDiscountProduct { /// /// 百度ID /// [JsonProperty(PropertyName = "baidu_product_id")] public string Baidu_product_id { get; set; } /// /// 原始价 /// [JsonProperty(PropertyName = "orig_price")] public int Orig_price { get; set; } /// /// 优惠金额 /// [JsonProperty(PropertyName = "save_price")] public int Save_price { get; set; } /// /// 优惠后金额 /// [JsonProperty(PropertyName = "now_price")] public int Now_price { get; set; } } }