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

43 lines
805 B
C#

using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
/// <summary>
/// 用户的道具卡
/// </summary>
public partial class UserItemCard
{
public uint Id { get; set; }
public int UserId { get; set; }
/// <summary>
/// 类型
/// </summary>
public byte? Type { get; set; }
public int ItemCardId { get; set; }
/// <summary>
/// 名称
/// </summary>
public string Title { get; set; } = null!;
/// <summary>
/// 1未使用 2已使用
/// </summary>
public bool? Status { get; set; }
/// <summary>
/// 抵扣的订单ID
/// </summary>
public int? OrderId { get; set; }
public uint Addtime { get; set; }
public int Updatetime { get; set; }
public int? Deltime { get; set; }
}