room.cs

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

CS
77
字号
/******************************************************************************************
 			copyright (c) 2007 -  LeadNT.COM 

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

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

using System;

namespace DBaoBookingManagement.Entity
{

  public class Room
  {
     private Int32 _RoomId;
     private String _RoomNum;
     private DateTime _EndTime;
     private Double _NormalPrice;
     private Double _DBaoPrice;
     private String _Desciption;
     private Int32 _RoomTypeId;
     private Int32 _HotelId;

     public Room()
     {}


     public Int32 RoomId
     {
         get{return this._RoomId;}
         set{this._RoomId = value;}
     }

     public String RoomNum
     {
         get{return this._RoomNum;}
         set{this._RoomNum = value;}
     }

     public DateTime EndTime
     {
         get{return this._EndTime;}
         set{this._EndTime = value;}
     }

     public Double NormalPrice
     {
         get{return this._NormalPrice;}
         set{this._NormalPrice = value;}
     }

     public Double DBaoPrice
     {
         get{return this._DBaoPrice;}
         set{this._DBaoPrice = value;}
     }

     public String Desciption
     {
         get{return this._Desciption;}
         set{this._Desciption = value;}
     }

     public Int32 RoomTypeId
     {
         get{return this._RoomTypeId;}
         set{this._RoomTypeId = value;}
     }

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

⌨️ 快捷键说明

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