28 lines
489 B
C#
28 lines
489 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ChouBox.Model.Entities;
|
|
|
|
/// <summary>
|
|
/// 用户的怒气值
|
|
/// </summary>
|
|
public partial class UserRage
|
|
{
|
|
public uint Id { get; set; }
|
|
|
|
public int UserId { get; set; }
|
|
|
|
public int GoodsId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 怒气值
|
|
/// </summary>
|
|
public int Rage { get; set; }
|
|
|
|
public int Addtime { get; set; }
|
|
|
|
public int Updatetime { get; set; }
|
|
|
|
public int? Deltime { get; set; }
|
|
}
|