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