using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using SqlSugar;
|
using WIDESEAWCS_Core.DB.Models;
|
|
namespace WIDESEAWCS_Model.Models
|
{
|
[SugarTable("Dt_Loginhsy", "登入记录")] //('数据库表名','数据库表备注')
|
public class Dt_Loginhsy: BaseEntity
|
{
|
/// <summary>
|
/// 主键
|
/// </summary>
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
public int ID { get; set; }
|
|
/// <summary>
|
/// 用户姓名
|
/// </summary>
|
[SugarColumn( IsNullable = true,Length =50, ColumnDescription = "用户姓名")]
|
public string UserName { get; set; }
|
|
|
/// <summary>
|
/// 登入时间
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "登入时间")]
|
public DateTime LoginTiem { get; set; }
|
|
/// <summary>
|
/// 退出时间
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "退出时间")]
|
public DateTime?OutTiem { get; set; }
|
|
/// <summary>
|
/// 操作内容
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "操作内容")]
|
public string? OpCenten { get; set; }
|
}
|
}
|