roomtype.cs
来自「饮食管理系统」· CS 代码 · 共 54 行
CS
54 行
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 + =
减小字号Ctrl + -
显示快捷键?