using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; /// /// 用户领取的权益中心等级奖品 /// public partial class UserQuanYiLevelJiang { public uint Id { get; set; } public int? UserId { get; set; } public int QyLevelId { get; set; } public int? QyLevel { get; set; } public uint? CouponId { get; set; } /// /// 1普通降临(优惠券) 2高级奖励(奖品) /// public bool Type { get; set; } public string Title { get; set; } = null!; /// /// 减多少 /// public decimal? JianPrice { get; set; } /// /// 满多少 /// public decimal? ManPrice { get; set; } /// /// 有效时间(天) /// public int? EffectiveDay { get; set; } public int? EndTime { get; set; } /// /// 优惠券赠送多少 /// public uint? ZNum { get; set; } /// /// 奖品图片 /// public string? Imgurl { get; set; } public int? ShangId { get; set; } /// /// 奖品价值 /// public decimal? JiangPrice { get; set; } /// /// 奖品兑换价 /// public decimal? Money { get; set; } /// /// 市场参考价 /// public decimal? ScMoney { get; set; } /// /// 奖品编号 /// public string? PrizeCode { get; set; } /// /// 概率 /// public decimal? Probability { get; set; } public int Addtime { get; set; } public int Updatetime { get; set; } public int? Deltime { get; set; } }