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