You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1001 B
C#

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