45 lines
1.1 KiB
C#
45 lines
1.1 KiB
C#
using AngleSharp.Text;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WGShare.Domain.Entities
|
|
{
|
|
/// <summary>
|
|
/// 签到名单记录
|
|
///</summary>
|
|
[SugarTable("user_signin_record")]
|
|
public class UserSignInRecord
|
|
{
|
|
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
|
|
public string Id { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "uid")]
|
|
public string UId { get; set; }
|
|
|
|
|
|
[SugarColumn(ColumnName = "signin_name")]
|
|
public string SignInName { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "room_num")]
|
|
public string RoomNum { get; set; }
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// 默认值: CURRENT_TIMESTAMP
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "create_time", IsOnlyIgnoreInsert = true, IsOnlyIgnoreUpdate = true)]
|
|
public DateTime CreateTime { get; set; }
|
|
}
|
|
}
|