using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using SqlSugar;
|
using WIDESEAWCS_Core.DB.Models;
|
using WIDESEAWCS_Core.Tenants;
|
|
namespace WIDESEAWCS_Model.Models
|
{
|
[SugarTable("Dt_LoginHistory", "登录记录"), MultiTenant]
|
public class Dt_LoginHistory : BaseEntity
|
{
|
/// <summary>
|
/// 主键
|
/// </summary>
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
|
public int ID { get; set; }
|
|
|
/// <summary>
|
/// 用户账户
|
/// /// </summary>
|
[SugarColumn(IsNullable = true, Length = 50)]
|
public string Account { get; set; }
|
|
|
/// <summary>
|
/// 用户真实姓名
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 50)]
|
public string TrurName { get; set; }
|
|
|
/// <summary>
|
/// ip地址
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 50)]
|
public string LogIP { get; set; }
|
|
}
|
|
}
|