42 lines
1.7 KiB
C#
42 lines
1.7 KiB
C#
/*******************************************************************************
|
||
* Copyright © 2020 WaterCloud.Framework 版权所有
|
||
* Author: WaterCloud
|
||
* Description: WaterCloud快速开发平台
|
||
* Website:
|
||
*********************************************************************************/
|
||
using Chloe.Annotations;
|
||
using System;
|
||
using System.ComponentModel.DataAnnotations;
|
||
|
||
namespace WaterCloud.Domain.SystemOrganize
|
||
{
|
||
[TableAttribute("sys_UserLogon")]
|
||
public class UserLogOnEntity
|
||
{
|
||
[ColumnAttribute("F_Id", IsPrimaryKey = true)]
|
||
public string F_Id { get; set; }
|
||
public string F_UserId { get; set; }
|
||
[Required(ErrorMessage = "密码不能为空")]
|
||
public string F_UserPassword { get; set; }
|
||
public string F_UserSecretkey { get; set; }
|
||
public DateTime? F_AllowStartTime { get; set; }
|
||
public DateTime? F_AllowEndTime { get; set; }
|
||
public DateTime? F_LockStartDate { get; set; }
|
||
public DateTime? F_LockEndDate { get; set; }
|
||
public DateTime? F_FirstVisitTime { get; set; }
|
||
public DateTime? F_PreviousVisitTime { get; set; }
|
||
public DateTime? F_LastVisitTime { get; set; }
|
||
public DateTime? F_ChangePasswordDate { get; set; }
|
||
public bool? F_MultiUserLogin { get; set; }
|
||
public int? F_LogOnCount { get; set; }
|
||
public bool? F_UserOnLine { get; set; }
|
||
public string F_Question { get; set; }
|
||
public string F_AnswerQuestion { get; set; }
|
||
public bool? F_CheckIPAddress { get; set; }
|
||
public string F_Language { get; set; }
|
||
public string F_Theme { get; set; }
|
||
public String F_LoginSession { get; set; }
|
||
public Int32 F_ErrorNum { get; set; }
|
||
}
|
||
}
|