📄 branch.cs
字号:
using System;
namespace HouseBE
{
/// <summary>
/// Branch实体 部门信息
/// </summary>
public class Branch
{
private int _BranchID;
private string _BranchName;
private string _Remark;
public int BranchID
{
set
{
this._BranchID=value;
}
get
{
return this._BranchID;
}
}
public string BranchName
{
set
{
this._BranchName=value;
}
get
{
return this._BranchName;
}
}
public string Remark
{
set
{
this._Remark=value;
}
get
{
return this._Remark;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -