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