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.
31 lines
1.2 KiB
31 lines
1.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ICSSoft.Entity
|
|
{
|
|
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 WorkPoint { get; set; }
|
|
public string F_Theme { get; set; }
|
|
}
|
|
}
|