using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; /// /// 优惠券表 /// public partial class Coupon { public uint Id { get; set; } /// /// 1新人优惠券 2权益优惠卷 /// public byte? Type { get; set; } /// /// 商品名称 /// public string Title { get; set; } = null!; /// /// 排序值 /// public uint? Sort { get; set; } /// /// 减多少 /// public decimal? Price { get; set; } /// /// 满多少减多少 /// public decimal? ManPrice { get; set; } /// /// 有效时间(天) /// public int? EffectiveDay { get; set; } /// /// 添加时间 /// public uint Addtime { get; set; } /// /// 0上架 2下架 4已删除 /// public bool Status { get; set; } /// /// 是否限制使用 0不限制 1一番赏 2无限赏 3擂台赏 6全局赏 9领主赏 9连击赏 /// public byte? Ttype { get; set; } }