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.

37 lines
919 B

using FreeSql.DataAnnotations;
namespace Znyc.CloudCar.Model.Entities
{
/// <summary>
/// 用户签到记录表
/// </summary>
[Table(Name = "rm_sign_record")]
public class SignRecordEntity : EntityBase
{
/// <summary>
/// 主表ID
/// </summary>
public long SignId { get; set; }
/// <summary>
/// 用户Id
/// </summary>
public long UserId { get; set; }
/// <summary>
/// 签到奖励内容
/// </summary>
public decimal SignReward { get; set; }
/// <summary>
/// 签到时间
/// </summary>
[Column(Position = -1, CanUpdate = false, ServerTime = DateTimeKind.Local)]
public DateTime SignTime { get; set; }
/// <summary>
/// 签到类型
/// </summary>
public int SignType { get; set; }
}
}