ChouBox/ChouBox.Model/Entities/ItemCard.cs
2025-04-23 19:20:23 +08:00

40 lines
731 B
C#

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