📄 employeesentity.cs
字号:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace BRISDataAccess.Entity
{
public class EmployeesEntity
{
private int _employeeID;
public int EmployeeID
{
get { return _employeeID; }
set { _employeeID = value; }
}
private string _lastName;
public string LastName
{
get { return _lastName; }
set { _lastName = value; }
}
private string _firstName;
public string FirstName
{
get { return _firstName; }
set { _firstName = value; }
}
private string _title;
public string Title
{
get { return _title; }
set { _title = value; }
}
private Nullable<DateTime> _birthDate;
public Nullable<DateTime> BirthDate
{
get { return _birthDate; }
set { _birthDate = value; }
}
private Nullable<DateTime> _hireDate;
public Nullable<DateTime> HireDate
{
get { return _hireDate; }
set { _hireDate = value; }
}
private string _address;
public string Address
{
get { return _address; }
set { _address = value; }
}
private string _city;
public string City
{
get { return _city; }
set { _city = value; }
}
private string _notes;
public string Notes
{
get { return _notes; }
set { _notes = value; }
}
private Nullable<int> _reportsTo;
public Nullable<int> ReportsTo
{
get { return _reportsTo; }
set { _reportsTo = value; }
}
private int _orgID;
public int OrgID
{
get { return _orgID; }
set { _orgID = value; }
}
private Nullable<int> _isActive;
public Nullable<int> IsActive
{
get { return _isActive; }
set { _isActive = value; }
}
private string _loginName;
public string LoginName
{
get { return _loginName; }
set { _loginName = value; }
}
private string _password;
public string Password
{
get { return _password; }
set { _password = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -