📄 userinfo.cs
字号:
using System;
namespace HouseSystem.Modal
{
/// <summary>
/// UserInfo 的摘要说明。
/// </summary>
public class UserInfo
{
// Fields
private DateTime m_Addtime;
private string m_Answer;
private string m_Email;
private int m_ID;
private int m_LoginNum;
private string m_Name;
private string m_Password;
private string m_Question;
private byte m_Sex;
private byte m_State;
private string m_Tel1;
private string m_Tel2;
private string m_UserName;
public DateTime Addtime
{
get
{
return this.m_Addtime;
}
set
{
this.m_Addtime = value;
}
}
public string Answer
{
get
{
return this.m_Answer;
}
set
{
this.m_Answer = value;
}
}
public string Email
{
get
{
return this.m_Email;
}
set
{
this.m_Email = value;
}
}
public int LoginNum
{
get
{
return this.m_LoginNum;
}
set
{
this.m_LoginNum = value;
}
}
public string Name
{
get
{
return this.m_Name;
}
set
{
this.m_Name = value;
}
}
public string Question
{
get
{
return this.m_Question;
}
set
{
this.m_Question = value;
}
}
public byte Sex
{
get
{
return this.m_Sex;
}
set
{
this.m_Sex = value;
}
}
public byte State
{
get
{
return this.m_State;
}
set
{
this.m_State = value;
}
}
public string Tel1
{
get
{
return this.m_Tel1;
}
set
{
this.m_Tel1 = value;
}
}
public string Tel2
{
get
{
return this.m_Tel2;
}
set
{
this.m_Tel2 = value;
}
}
public int UserId
{
get
{
return this.m_ID;
}
set
{
this.m_ID = value;
}
}
public string UserName
{
get
{
return this.m_UserName;
}
set
{
this.m_UserName = value;
}
}
public string UserPass
{
get
{
return this.m_Password;
}
set
{
this.m_Password = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -