⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 employee.cs

📁 实现房产销售的房屋管理 客户管理 并且在客户管理中实现了对预定客户和已购房客户的查询和修改
💻 CS
字号:
using System;

namespace HouseBE
{
	/// <summary>
	/// Employee 实体 雇员信息。
	/// </summary>
	public class Employee
	{
	   private int _EmployeeID;
	   private string _EmployeeName;
	   private string _EmployeeSex;
	   private int _EmployeeAge;
	   private string _EmployeeEDU;
	   private string _EmployeeAddress;
	   private int _BranchID;
	   private string _BranchName;
	   private string _Reamark; 
		
		
		public int EmployeeID
		{
			set
			{
			  this._EmployeeID=value;
			}
			get
			{
			  return this._EmployeeID;
			}
		}
		public string EmployeeName
		{
			set
			{
			  this._EmployeeName=value;
			}
			get
			{
			  return this._EmployeeName;
			}
		}
		
		public string EmployeeSex
		{
			set
			{
			 this._EmployeeSex=value;
			}
			get
			{
			 return this._EmployeeSex;
			}
		}
       
		public int EmployeeAge
		{
			set
			{
			 this._EmployeeAge=value;
			}
			get
			{
			 return this._EmployeeAge;
			}
		}
        
		public string EmployeeEDU
		{
			set
			{
			  this._EmployeeEDU=value;
			}
			get
			{
			  return this._EmployeeEDU;
			}
		}
		public string EmployeeAddress
		{
			set
			{
			 this._EmployeeAddress=value;
			}
			get
			{
			 return this._EmployeeAddress;
			}
		}
		public int BranchID
		{
			set
			{
			   this._BranchID=value;
			}
			get
			{
			   return this._BranchID;
			}
		}
		public string BranchName
		{
			set{this._BranchName=value;}
			get{return this._BranchName;}
		}
		public string Reamark
		{
			set
			{
			 this._Reamark=value;
			}
			get
			{
			 return this._Reamark;
			}
		}
 
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -