clsfloor.cs
来自「房屋中介系统是一款非常实用的房屋中介软件。使用该软件」· CS 代码 · 共 34 行
CS
34 行
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 + =
减小字号Ctrl + -
显示快捷键?