You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
731 B
31 lines
731 B
2 years ago
|
using FreeSql.DataAnnotations;
|
||
|
|
||
|
namespace Znyc.CloudCar.Model.Entities
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 用户签到表
|
||
|
/// </summary>
|
||
|
[Table(Name = "rm_sign")]
|
||
|
public class SignEntity : EntityBase
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 用户Id
|
||
|
/// </summary>
|
||
|
public long UserId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 累计签到天数
|
||
|
/// </summary>
|
||
|
public int TotalSeriesDays { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 月签到天数
|
||
|
/// </summary>
|
||
|
public int MonthSeriesDays { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 最后一次签到时间
|
||
|
/// </summary>
|
||
|
public DateTime LastSignTime { get; set; }
|
||
|
}
|
||
|
}
|