using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; public partial class CardLevel { public uint Id { get; set; } /// /// 卡名称 /// public string Title { get; set; } = null!; /// /// 等级图片 /// public string? Imgurl { get; set; } /// /// 排序 /// public int? Sort { get; set; } /// /// 添加时间 /// public int? Addtime { get; set; } }