添加项目文件。

This commit is contained in:
dell
2023-03-03 16:07:50 +08:00
parent 2c462551b6
commit 011039960e
585 changed files with 362460 additions and 0 deletions

View File

@ -0,0 +1,50 @@
using System;
namespace HT.Cloud.Code
{
public class OperatorUserInfo
{
//密码
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 int? F_LogOnCount { get; set; }
//在线标记
public bool? F_UserOnLine { get; set; }
//安全问题
public string F_Question { get; set; }
//问题答案
public string F_AnswerQuestion { get; set; }
//默认主题
public string F_Theme { get; set; }
}
}