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.
29 lines
1.1 KiB
29 lines
1.1 KiB
using System;
|
|
|
|
namespace NFine.Domain.Entity.SystemManage
|
|
{
|
|
public class UserLogOnEntity
|
|
{
|
|
public string F_Id { get; set; }
|
|
public string F_UserId { get; set; }
|
|
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; }
|
|
|
|
}
|
|
}
|