📄 clsfloor.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace houseAgency.mothedCls
{
class clsFloor
{
private string house_floorID=null;
private string floor_name=null;
private string floor_remark = null;
public string id
{
get { return house_floorID; }
set { house_floorID = value; }
}
public string name
{
get { return floor_name; }
set { floor_name = value; }
}
public string remark
{
get { return floor_remark; }
set { floor_remark = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -