using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; /// /// 无限赏领主 /// public partial class GoodsKingRank { public uint Id { get; set; } public uint UserId { get; set; } public int GoodsId { get; set; } /// /// 多少发升级为领主 /// public int? Count { get; set; } /// /// 占领了多少发 /// public uint? ZNums { get; set; } public decimal? Money { get; set; } /// /// 奖品ID /// public int? OrderListId { get; set; } /// /// 开始时间 /// public int? Addtime { get; set; } /// /// 结束时间 /// public int? EndTime { get; set; } }