using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.ThirdPartyOrderData { // /// 销售单做法 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class ProgramHandleMakeInfoData { //==================================private================================== #region field //前台系统ID private string id; //商品明细ID private string orderItemId; //做法ID private string makeId; //做法名称 private string makeName; //做法加价 private decimal addPrice; //折后单价 private decimal discountPrice; //做法数量 private decimal count; //做法退数量 private decimal rcount; //加价总额 private decimal addTotal; //折后总额 private decimal discountAddTotal; //折后率 private decimal discount; //做法管理数量标识(0否1是) private int qtyFlag; #endregion //==================================public================================== #region id 前台系统ID /// /// 前台系统ID /// [JsonProperty(PropertyName = "id")] public string Id { get { return id; } set { id = value; } } #endregion #region orderItemId 商品明细ID /// /// 商品明细ID /// [JsonProperty(PropertyName = "orderItemId")] public string Orderitemid { get { return orderItemId; } set { orderItemId = value; } } #endregion #region makeId 做法ID /// /// 做法ID /// [JsonProperty(PropertyName = "makeId")] public string Makeid { get { return makeId; } set { makeId = value; } } #endregion #region makeName 做法名称 /// /// 做法名称 /// [JsonProperty(PropertyName = "makeName")] public string Makename { get { return makeName; } set { makeName = value; } } #endregion #region addPrice 做法加价 /// /// 做法加价 /// [JsonProperty(PropertyName = "addPrice")] public decimal Addprice { get { return addPrice; } set { addPrice = value; } } #endregion #region discountPrice 折后单价 /// /// 折后单价 /// [JsonProperty(PropertyName = "discountPrice")] public decimal Discountprice { get { return discountPrice; } set { discountPrice = value; } } #endregion #region count 做法数量 /// /// 做法数量 /// [JsonProperty(PropertyName = "count")] public decimal Count { get { return count; } set { count = value; } } #endregion #region rcount 做法退数量 /// /// 做法退数量 /// [JsonProperty(PropertyName = "rcount")] public decimal Rcount { get { return rcount; } set { rcount = value; } } #endregion #region addTotal 加价总额 /// /// 加价总额 /// [JsonProperty(PropertyName = "addTotal")] public decimal Addtotal { get { return addTotal; } set { addTotal = value; } } #endregion #region discountAddTotal 折后总额 /// /// 折后总额 /// [JsonProperty(PropertyName = "discountAddTotal")] public decimal Discountaddtotal { get { return discountAddTotal; } set { discountAddTotal = value; } } #endregion #region discount 折后率 /// /// 折后率 /// [JsonProperty(PropertyName = "discount")] public decimal Discount { get { return discount; } set { discount = value; } } #endregion #region qtyFlag 做法管理数量标识(0否1是) /// /// 做法管理数量标识(0否1是) /// [JsonProperty(PropertyName = "qtyFlag")] public int Qtyflag { get { return qtyFlag; } set { qtyFlag = value; } } #endregion } }