📄 room.cs
字号:
/******************************************************************************************
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -