using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; /// /// 用户优惠券表 /// public partial class CouponReceive { public uint Id { get; set; } /// /// 商品名称 /// public string Title { get; set; } = null!; /// /// 商品价格 /// public decimal? Price { get; set; } /// /// 满多少减多少 /// public decimal? ManPrice { get; set; } /// /// 过期时间 /// public int? EndTime { get; set; } /// /// 添加时间 /// public uint Addtime { get; set; } /// /// 0未使用1已使用2已过期 /// public bool Status { get; set; } /// /// 会员id /// public int? UserId { get; set; } public int? CouponId { get; set; } /// /// 是否限制使用 0不限制 1一番赏 2无限赏 3擂台赏 6全局赏 9领主赏 9连击赏 /// public byte? State { get; set; } public int Ttype { get; set; } }