📄 office.cs
字号:
using System;
namespace NHibernate.Test.NHSpecificTest.NH276
{
public class Office
{
private int _id;
private string _worker;
private Building _location;
public int Id
{
get { return _id; }
set { _id = value; }
}
public string Worker
{
get { return _worker; }
set { _worker = value; }
}
public Building Location
{
get { return _location; }
set { _location = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -