administratorinfo.cs
来自「动易SiteFactory™ 网上商店系统1.0源代码」· CS 代码 · 共 202 行
CS
202 行
namespace PowerEasy.Model.UserManage
{
using PowerEasy.Model;
using System;
public class AdministratorInfo : PowerEasy.Model.Nullable
{
private int m_AdminId;
private string m_AdminName;
private string m_AdminPassword;
private bool m_EnableModifyPassword;
private bool m_EnableMultiLogin;
private bool m_IsLock;
private string m_LastLoginIP;
private DateTime? m_LastLoginTime;
private DateTime? m_LastLogoutTime;
private DateTime? m_LastModifyPasswordTime;
private int m_LoginTimes;
private string m_RndPassword;
private string m_RoleList;
private string m_UserName;
public AdministratorInfo()
{
}
public AdministratorInfo(bool value)
{
base.IsNull = value;
}
public int AdminId
{
get
{
return this.m_AdminId;
}
set
{
this.m_AdminId = value;
}
}
public string AdminName
{
get
{
return this.m_AdminName;
}
set
{
this.m_AdminName = value;
}
}
public string AdminPassword
{
get
{
return this.m_AdminPassword;
}
set
{
this.m_AdminPassword = value;
}
}
public bool EnableModifyPassword
{
get
{
return this.m_EnableModifyPassword;
}
set
{
this.m_EnableModifyPassword = value;
}
}
public bool EnableMultiLogin
{
get
{
return this.m_EnableMultiLogin;
}
set
{
this.m_EnableMultiLogin = value;
}
}
public bool IsLock
{
get
{
return this.m_IsLock;
}
set
{
this.m_IsLock = value;
}
}
public string LastLoginIP
{
get
{
return this.m_LastLoginIP;
}
set
{
this.m_LastLoginIP = value;
}
}
public DateTime? LastLoginTime
{
get
{
return this.m_LastLoginTime;
}
set
{
this.m_LastLoginTime = value;
}
}
public DateTime? LastLogoutTime
{
get
{
return this.m_LastLogoutTime;
}
set
{
this.m_LastLogoutTime = value;
}
}
public DateTime? LastModifyPasswordTime
{
get
{
return this.m_LastModifyPasswordTime;
}
set
{
this.m_LastModifyPasswordTime = value;
}
}
public int LoginTimes
{
get
{
return this.m_LoginTimes;
}
set
{
this.m_LoginTimes = value;
}
}
public string RndPassword
{
get
{
return this.m_RndPassword;
}
set
{
this.m_RndPassword = value;
}
}
public string RoleList
{
get
{
return this.m_RoleList;
}
set
{
this.m_RoleList = value;
}
}
public string UserName
{
get
{
return this.m_UserName;
}
set
{
this.m_UserName = value;
}
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?