users.cs

来自「本系统是基于三层架构和Ajax控件结合的酒店预订系统」· CS 代码 · 共 92 行

CS
92
字号
/******************************************************************************************
 			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 + =
减小字号Ctrl + -
显示快捷键?