⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hotel.cs

📁 本系统是基于三层架构和Ajax控件结合的酒店预订系统
💻 CS
字号:
/******************************************************************************************
 			copyright (c) 2007 -  LeadNT.COM 

  class name: Hotel.cs
  Description: This entity class is crate by LeadNT DBTable2EC.

 *****************************************************************************************/

using System;

namespace DBaoBookingManagement.Entity
{

  public class Hotel
  {
     private Int32 _HotelId;
     private String _HotelName;
     private Int32 _Star;
     private String _Description;
     private Int32 _CityId;
     private String _Synthesis;
     private String _Pets;
     private String _ActivePlace;
     private String _Service;
     private String _Net;
     private String _Parking;
     private String _Cancel;
     private String _Children;
     private String _Creditcard;

     public Hotel()
     {}


     public Int32 HotelId
     {
         get{return this._HotelId;}
         set{this._HotelId = value;}
     }

     public String HotelName
     {
         get{return this._HotelName;}
         set{this._HotelName = value;}
     }

     public Int32 Star
     {
         get{return this._Star;}
         set{this._Star = value;}
     }

     public String Description
     {
         get{return this._Description;}
         set{this._Description = value;}
     }

     public Int32 CityId
     {
         get{return this._CityId;}
         set{this._CityId = value;}
     }

     public String Synthesis
     {
         get{return this._Synthesis;}
         set{this._Synthesis = value;}
     }

     public String Pets
     {
         get{return this._Pets;}
         set{this._Pets = value;}
     }

     public String ActivePlace
     {
         get{return this._ActivePlace;}
         set{this._ActivePlace = value;}
     }

     public String Service
     {
         get{return this._Service;}
         set{this._Service = value;}
     }

     public String Net
     {
         get{return this._Net;}
         set{this._Net = value;}
     }

     public String Parking
     {
         get{return this._Parking;}
         set{this._Parking = value;}
     }

     public String Cancel
     {
         get{return this._Cancel;}
         set{this._Cancel = value;}
     }

     public String Children
     {
         get{return this._Children;}
         set{this._Children = value;}
     }

     public String Creditcard
     {
         get{return this._Creditcard;}
         set{this._Creditcard = value;}
     }
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -