using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; /// /// 道具卡 /// public partial class ItemCard { public uint Id { get; set; } /// /// 1重抽卡 /// public byte? Type { get; set; } /// /// 名称 /// public string Title { get; set; } = null!; /// /// 排序值 /// public uint? Sort { get; set; } /// /// 1正常 2下架 3删除 /// public bool? Status { get; set; } /// /// 添加时间 /// public uint Addtime { get; set; } public int Updatetime { get; set; } }