📄 users.cs
字号:
/******************************************************************************************
copyright (c) 2007 - LeadNT.COM
class name: Users.cs
Description: This entity class is crate by LeadNT DBTable2EC.
*****************************************************************************************/
using System;
namespace DBaoBookingManagement.Entity
{
public class Users
{
private Int32 _UserId;
private String _UserName;
private String _Pwd;
private String _RealName;
private String _Sex;
private String _IDCard;
private String _PhoneNum;
private Int32 _Goal;
private Int32 _UserTypeId;
private int _RecId;
public int RecId
{
get { return _RecId; }
set { _RecId = value; }
}
public Users()
{}
public Int32 UserId
{
get{return this._UserId;}
set{this._UserId = value;}
}
public String UserName
{
get{return this._UserName;}
set{this._UserName = value;}
}
public String Pwd
{
get{return this._Pwd;}
set{this._Pwd = value;}
}
public String RealName
{
get{return this._RealName;}
set{this._RealName = value;}
}
public String Sex
{
get{return this._Sex;}
set{this._Sex = value;}
}
public String IDCard
{
get{return this._IDCard;}
set{this._IDCard = value;}
}
public String PhoneNum
{
get{return this._PhoneNum;}
set{this._PhoneNum = value;}
}
public Int32 Goal
{
get{return this._Goal;}
set{this._Goal = value;}
}
public Int32 UserTypeId
{
get{return this._UserTypeId;}
set{this._UserTypeId = value;}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -