using Newtonsoft.Json; using NPoco; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Entity { /// /// 优惠分析 /// [Serializable] public class HandOverInfo { public HandOverInfo() { } /// /// 优惠类型 /// [JsonProperty(PropertyName = "promotionType")] [Column("promotionType")] public int PromotionType { get; set; }//优惠类型 /// /// 优惠次数 /// [JsonProperty(PropertyName = "count")] [Column("count")] public int Count { get; set; }//优惠次数 /// /// 优惠金额 /// [JsonProperty(PropertyName = "amount")] [Column("amount")] public decimal Amount { get; set; }// 优惠金额 } }