温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:酒店管理系统(ExtJs)源码
当前文件:
MyHotelManager/HotelModels/RoomTypeBean.cs,打开代码结构图
MyHotelManager/HotelModels/RoomTypeBean.cs,打开代码结构图1using System; 2
using System.Collections.Generic; 3
using System.Text; 4
//该源码首发自www.51aspx.com(51aspx.com) 5
6
namespace HotelModels 7
{ 8
public class RoomTypeBean 9
{ 10
private int _TypeId; 11
12
public int TypeId 13
{ 14
get { return _TypeId; } 15
set { _TypeId = value; } 16
} 17
private string _TypeName; 18
19
public string TypeName 20
{ 21
get { return _TypeName; } 22
set { _TypeName = value; } 23
} 24
private double _TypePrice; 25
26
public double TypePrice 27
{ 28
get { return _TypePrice; } 29
set { _TypePrice = value; } 30
} 31
private string _IsTv; 32
33
public string IsTv 34
{ 35
get { return _IsTv; } 36
set { _IsTv = value; } 37
} 38
private string _IsKongTiao; 39
40
public string IsKongTiao 41
{ 42
get { return _IsKongTiao; } 43
set { _IsKongTiao = value; } 44
} 45
private string _Remark; 46
47
public string Remark 48
{ 49
get { return _Remark; } 50
set { _Remark = value; } 51
} 52
53
} 54
} 55





}
}