📄 roomtype.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace Entity
{
public class RoomType
{
int _roomid;
string _roomtype;
float _lowCousume;
string _roomReamrk;
int _roomrs;
public int RoomRs
{
get { return this._roomrs; }
set { this._roomrs = value; }
}
public int RoomId
{
get
{
return this._roomid;
}
set
{
this._roomid = value;
}
}
public string roomType
{
get
{ return this._roomtype; }
set { this._roomtype = value; }
}
public float LowCousume
{
get { return this._lowCousume; }
set { this._lowCousume = value; }
}
public string RoomReamrk
{
get { return this._roomReamrk; }
set { this._roomReamrk = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -