namespace ZR.LiveForum.Model.Liveforum { /// /// 等级配置 /// [SugarTable("T_UserLevels")] [Tenant("liveforum")] public class T_UserLevels { /// /// id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 名称 /// public string LevelName { get; set; } /// /// 等级图标 /// public string LevelIcon { get; set; } /// /// 显示颜色 /// public string LevelColor { get; set; } /// /// 最小经验值 /// public int? MinExperience { get; set; } /// /// 最大经验值 /// public int? MaxExperience { get; set; } /// /// 特权配置 /// public string Privileges { get; set; } /// /// 状态 /// public bool IsActive { get; set; } /// /// 创建时间 /// public DateTime? CreatedAt { get; set; } /// /// 更新时间 /// public DateTime? UpdatedAt { get; set; } } }