📄 specs.cs
字号:
using System;
namespace HouseBE
{
/// <summary>
/// Specs 规格信息。
/// </summary>
public class Specs
{
private int _SpecID;
private string _SpecType;
private string _Remark;
public int SpecID
{
set
{
this._SpecID=value;
}
get
{
return this._SpecID;
}
}
public string SpecType
{
set
{
this._SpecType=value;
}
get
{
return this._SpecType;
}
}
public string Remark
{
set
{
this._Remark=value;
}
get
{
return this._Remark;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -