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

28 lines
511 B
C#

using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
/// <summary>
/// 用户连击赏连击次数
/// </summary>
public partial class UserGoodsLianJi
{
public uint Id { get; set; }
public int UserId { get; set; }
public int GoodsId { get; set; }
/// <summary>
/// 连击次数
/// </summary>
public uint Number { get; set; }
public int Addtime { get; set; }
public int Updatetime { get; set; }
public int? Deltime { get; set; }
}