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.

96 lines
2.5 KiB
C#

9 months ago
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.GuangChang
{
/// <summary>
/// 美食广场订单做法信息
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class VposOrderProductMake
{
/// <summary>
/// 订单ID
/// </summary>
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
/// <summary>
/// 订单明细ID
/// </summary>
[JsonProperty(PropertyName = "orderItemId")]
public string OrderItemId { get; set; }
/// <summary>
/// 主单ID
/// </summary>
[JsonProperty(PropertyName = "ticketId")]
public string TicketId { get; set; }
/// <summary>
/// 做法ID
/// </summary>
[JsonProperty(PropertyName = "makeId")]
public string MakeId { get; set; }
/// <summary>
/// 做法名称
/// </summary>
[JsonProperty(PropertyName = "makeName")]
public string MakeName { get; set; }
/// <summary>
/// 做法加价
/// </summary>
[JsonProperty(PropertyName = "addPrice")]
public decimal AddPrice { get; set; }
/// <summary>
/// 折后单价
/// </summary>
[JsonProperty(PropertyName = "discountPrice")]
public decimal DiscountPrice { get; set; }
/// <summary>
/// 做法数量
/// </summary>
[JsonProperty(PropertyName = "count")]
public decimal Count { get; set; }
/// <summary>
/// 加价总额
/// </summary>
[JsonProperty(PropertyName = "addTotal")]
public decimal AddTotal { get; set; }
/// <summary>
/// 折后总额
/// </summary>
[JsonProperty(PropertyName = "discountAddTotal")]
public decimal DiscountAddTotal { get; set; }
/// <summary>
/// 折后率
/// </summary>
[JsonProperty(PropertyName = "discount")]
public decimal Discount { get; set; }
/// <summary>
/// 做法管理数量标识(0否1是)
/// </summary>
[JsonProperty(PropertyName = "qtyFlag")]
public int QtyFlag { get; set; }
/// <summary>
/// 做法管理数量标识(0否1是)
/// </summary>
[JsonProperty(PropertyName = "hand")]
public int Hand { get; set; }
}
}