📄 user1.cs
字号:
using System;
using System.Data;
namespace SkyiSite.DBUtility
{
public class User1
{
private System.Guid _UserId;
private System.Guid _RoleId;
private string _UserName;
private string _Password;
private string _RoleName;
private string _RealityName;
private bool _IsStoped;
private string _Corporation;
private bool _IsAudited;
private string _Tele;
private string _Email;
private string _Mobile;
private System.DateTime _CreateDate;
private System.DateTime _LastLoginDate;
public User1()
{
}
public System.Guid UserId
{
get
{
return this._UserId;
}
set
{
if ((this._UserId != value))
{
this._UserId = value;
}
}
}
public System.Guid RoleId
{
get
{
return this._RoleId;
}
set
{
if ((this._RoleId != value))
{
this._RoleId = value;
}
}
}
public string UserName
{
get
{
return this._UserName;
}
set
{
if ((this._UserName != value))
{
this._UserName = value;
}
}
}
public string Password
{
get
{
return this._Password;
}
set
{
if ((this._Password != value))
{
this._Password = value;
}
}
}
public System.DateTime CreateDate
{
get
{
return this._CreateDate;
}
set
{
if ((this._CreateDate != value))
{
this._CreateDate = value;
}
}
}
public string RoleName
{
get
{
return this._RoleName;
}
set
{
if ((this._RoleName != value))
{
this._RoleName = value;
}
}
}
public string RealityName
{
get
{
return this._RealityName;
}
set
{
if ((this._RealityName != value))
{
this._RealityName = value;
}
}
}
public bool IsStoped
{
get
{
return this._IsStoped;
}
set
{
if ((this._IsStoped != value))
{
this._IsStoped = value;
}
}
}
public string Corporation
{
get
{
return this._Corporation;
}
set
{
if ((this._Corporation != value))
{
this._Corporation = value;
}
}
}
public bool IsAudited
{
get
{
return this._IsAudited;
}
set
{
if ((this._IsAudited != value))
{
this._IsAudited = value;
}
}
}
public string Tele
{
get
{
return this._Tele;
}
set
{
if ((this._Tele != value))
{
this._Tele = value;
}
}
}
public string Email
{
get
{
return this._Email;
}
set
{
if ((this._Email != value))
{
this._Email = value;
}
}
}
public string Mobile
{
get
{
return this._Mobile;
}
set
{
if ((this._Mobile != value))
{
this._Mobile = value;
}
}
}
public System.DateTime LastLoginDate
{
get
{
return this._LastLoginDate;
}
set
{
if ((this._LastLoginDate != value))
{
this._LastLoginDate = value;
}
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -