using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; /// /// 盒子 /// public partial class Goods { public uint Id { get; set; } /// /// 分类ID /// public uint CategoryId { get; set; } /// /// 盒子名称 /// public string Title { get; set; } = null!; /// /// 盒子封面图 /// public string Imgurl { get; set; } = null!; /// /// 盒子详情图 /// public string ImgurlDetail { get; set; } = null!; /// /// 商品价格 /// public decimal? Price { get; set; } /// /// 套数 /// public uint? Stock { get; set; } /// /// 销量库存 /// public uint SaleStock { get; set; } /// /// 锁箱 0否 1是 /// public byte LockIs { get; set; } /// /// 锁箱时间 /// public uint LockTime { get; set; } /// /// 发券开关0关闭 1开启 /// public byte CouponIs { get; set; } /// /// 发券概率 /// public uint CouponPro { get; set; } /// /// 发积分开关0关闭 1开启 /// public byte IntegralIs { get; set; } /// /// 擂台赏抽全局赏数量 /// public uint PrizeNum { get; set; } /// /// 1上架 2下架 3售罄 /// public byte Status { get; set; } /// /// 排序值 /// public uint? Sort { get; set; } /// /// 1一番赏 2无限赏 3擂台赏 4抽卡机 5积分赏 6全局赏 7福利盲盒 8领主赏 9连击赏 /// public byte? Type { get; set; } /// /// 首页显示 0是 1否 /// public byte ShowIs { get; set; } /// /// 卡册显示价格 /// public string? ShowPrice { get; set; } /// /// 抽卡机卡牌背面图 /// public string? PrizeImgurl { get; set; } /// /// 卡册banner /// public string? CardBanner { get; set; } /// /// 抽卡机抽奖设置 /// public string? CardSet { get; set; } /// /// 抽卡机描述 /// public string? CardNotice { get; set; } /// /// 预售时间 /// public uint SaleTime { get; set; } /// /// 添加时间 /// public uint Addtime { get; set; } /// /// 修改时间 /// public uint UpdateTime { get; set; } public int? DeleteTime { get; set; } /// /// 一包几张 /// public int? CardNum { get; set; } /// /// 怒气值开关 0关 1开 /// public byte? RageIs { get; set; } /// /// 怒气值 /// public uint? Rage { get; set; } /// /// 道具卡ID /// public uint? ItemCardId { get; set; } /// /// 领主开关 0关 1开 /// public bool? LingzhuIs { get; set; } /// /// 领主每发返 /// public int? LingzhuFan { get; set; } /// /// 请选择抽中领主 /// public int? LingzhuShangId { get; set; } /// /// 当前领主 /// public int? KingUserId { get; set; } /// /// 连击赏连击次数 /// public int? LianJiNum { get; set; } /// /// 连击赏赏id /// public int? LianJiShangId { get; set; } /// /// 是否首抽五折 1是 0否 /// public byte? IsShouZhe { get; set; } /// /// 最新开关0关闭 1开启 /// public byte NewIs { get; set; } /// /// 描述 /// public string? GoodsDescribe { get; set; } /// /// 全局赏限购次数 /// public int? QuanjuXiangou { get; set; } /// /// 需要的流水 /// public decimal DayPrice { get; set; } /// /// 月总流水 /// public decimal MouthPrice { get; set; } /// /// 月实付 /// public decimal MouthPayPrice { get; set; } /// /// 日实付 /// public decimal DayPayPrice { get; set; } /// /// 多少级之下能买 /// public int UserLv { get; set; } /// /// 是否福利屋 /// public int IsFlw { get; set; } /// /// 福利屋开始时间 /// public int FlwStartTime { get; set; } /// /// 福利屋结束时间 /// public int FlwEndTime { get; set; } /// /// 开奖时间 /// public int OpenTime { get; set; } /// /// 0未开奖 1已开奖 /// public int IsOpen { get; set; } /// /// 抽奖门槛 /// public int ChoujiangXianzhi { get; set; } /// /// 同步编码,guid /// public string? AsyncCode { get; set; } /// /// 最后一次同步时间 /// public DateTime? AsyncDate { get; set; } /// /// 是否自动下架 /// public sbyte IsAutoXiajia { get; set; } /// /// 下架利润率 /// public int XiajiaLirun { get; set; } /// /// 下架生效抽数 /// public int XiajiaAutoCoushu { get; set; } /// /// 消费多少额度解锁盒子 /// public decimal UnlockAmount { get; set; } /// /// 每日限购次数 /// public int DailyXiangou { get; set; } }