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