orders.cs
来自「本系统是基于三层架构和Ajax控件结合的酒店预订系统」· CS 代码 · 共 90 行
CS
90 行
/******************************************************************************************
copyright (c) 2007 - LeadNT.COM
class name: Orders.cs
Description: This entity class is crate by LeadNT DBTable2EC.
*****************************************************************************************/
using System;
namespace DBaoBookingManagement.Entity
{
public class Orders
{
private Int32 _OrderId;
private String _OrderName;
private DateTime _StartTime;
private DateTime _EndTime;
private DateTime _OrderTime;
private Double _Price;
private Int32 _RoomId;
private Int32 _UserId;
private String _RealName;
private String _PhoneNum;
public Orders()
{}
public String RealName
{
get { return this._RealName; }
set { this._RealName = value; }
}
public String PhoneNum
{
get { return this._PhoneNum; }
set { this._PhoneNum = value; }
}
public Int32 OrderId
{
get{return this._OrderId;}
set{this._OrderId = value;}
}
public String OrderName
{
get{return this._OrderName;}
set{this._OrderName = value;}
}
public DateTime StartTime
{
get{return this._StartTime;}
set{this._StartTime = value;}
}
public DateTime EndTime
{
get{return this._EndTime;}
set{this._EndTime = value;}
}
public DateTime OrderTime
{
get{return this._OrderTime;}
set{this._OrderTime = value;}
}
public Double Price
{
get{return this._Price;}
set{this._Price = value;}
}
public Int32 RoomId
{
get{return this._RoomId;}
set{this._RoomId = value;}
}
public Int32 UserId
{
get{return this._UserId;}
set{this._UserId = value;}
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?