📄 roomtype.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace Hotel.Entity
{
public class RoomType
{
private int _typeNum;
public int TypeNum
{
get { return _typeNum; }
set { _typeNum = value; }
}
private string _roomType;
public string RoomType1
{
get { return _roomType; }
set { _roomType = value; }
}
private float _priceDay;
public float PriceDay
{
get { return _priceDay; }
set { _priceDay = value; }
}
private float _halfDay;
public float HalfDay
{
get { return _halfDay; }
set { _halfDay = value; }
}
private float _priceHour;
public float PriceHour
{
get { return _priceHour; }
set { _priceHour = value; }
}
private float _deposit;
public float Deposit
{
get { return _deposit; }
set { _deposit = value; }
}
private int _bedCount;
public int BedCount
{
get { return _bedCount; }
set { _bedCount = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -