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

📄 client.cs

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

namespace HouseBE
{
	/// <summary>
	/// Client 实体 客户信息。
	/// </summary>
	public class Client
	{
		private int _ClientID;
		private string _ClientName;
		private string _ClientAdress;
		private string _ClientSales;
		private string _ClientTelphone;
		private string _ClientEmail;
		private string _Reamark;
		private string EmpName;
		private int floor;
		private string format;
		private string xiang;
		private int  area;
		private string state;
		private string time;

		public string getEmp
		{
			get{return this.EmpName;}
			set{this.EmpName=value;}
		}

		public int getFloor
		{
			get{return this.floor;}
			set{this.floor=value;}
		}
		public string getFormat
		{
			get{return this.format;}
			set{this.format=value;}
		}
		public string getXiang
		{
			get{return this.xiang;}
			set{this.xiang=value;}
		}
		public int getArea
		{
			get{return this.area;}
			set{this.area=value;}
		}
		public string Getstate
		{
			get{return this.state;}
			set{this.state=value;}
		}
		public string getTime
		{
			get{return this.time;}
			set{this.time=value;}
		}
		public int ClientID
		{
			set
			{
			  this._ClientID=value;
			}
			get
			{
			  return this._ClientID;
			}
		}
		public string ClientName
		{
			set
			{
			 this._ClientName=value;
			}
			get
			{
			 return this._ClientName;
			}
		}
		public string ClientAdress
		{
			set
			{
			 this._ClientAdress=value;
			}
			get
			{
			 return this._ClientAdress;
			}
		}
		public string ClientSales
		{
			set
			{
			 this._ClientSales=value;
			}
			get
			{
			  return this._ClientSales;
			}
		}
		public string ClientTelphone
		{
			set
			{
			 this._ClientTelphone=value;
			}
			get
			{
			  return this._ClientTelphone;
			}
		}
		public string ClientEmail
		{
			set
			{
			  this._ClientEmail=value;
			}
			get
			{
			  return this._ClientEmail;
			}
		}
		public string Reamark
		{
			set
			{
			 this._Reamark=value;
			}
			get
			{
			  return this._Reamark;
			}
		}
	}
}

⌨️ 快捷键说明

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