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.

54 lines
1.3 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
namespace POSV.Entity
{
/// <summary>
/// 套菜明细
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class SuitExt : ProductExt
{
/// <summary>
/// 商品Id
/// </summary>
[JsonProperty(PropertyName = "suitId")]
public string SuitId { get; set; }
/// <summary>
/// 商品父ID
/// </summary>
[JsonProperty(PropertyName = "suitProductId")]
public string SuitProductId { get; set; }
/// <summary>
/// 商品Id
/// </summary>
[JsonProperty(PropertyName = "productId")]
public string ProductId { get; set; }
/// <summary>
/// 道菜的基准数量
/// </summary>
[JsonProperty(PropertyName = "quantity")]
public decimal Quantity { get; set; }
/// <summary>
/// 道菜的基准加价
/// </summary>
[JsonProperty(PropertyName = "addPrice")]
public decimal AddPrice { get; set; }
/// <summary>
/// 是否默认(0否1是)
/// </summary>
[JsonProperty(PropertyName = "defaultflag")]
public int DefaultFlag { get; set; }
}
}