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

📄 house.cs

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

namespace HouseBE
{
	/// <summary>
	/// YesSells 已售房信息。
	/// </summary>
	public class House
	{  
		//已售房编号 
		private int _HouseID;
		//楼房编号
		private string _HouseNO;
		//客户编号
		private int _ClientID;
		private string ClientName;
		//所属楼盘
		private int _LPID;
		private string LpName;
		//层数
		private int _Age;
		//规格编号 
		private int _SpecID;
		private string SpecName;
        //面积 
		private int _Area;
        //地址 
		private string _Address;
		//单价
		private int _Price;
		//备注
		private string _Remartk;
		//出售日期
		private string _Datetime;
        //状态
		private string _State;

	

		#region 售楼属性
		
		public int HouseID
		{
			set
			{
			 this._HouseID=value;
			}
			get
			{
			 return this._HouseID;
			}
		}
		
		public string getLpName
		{
			get{return this.LpName;}
			set{this.LpName=value;}
		}

		public string getSpecName
		{
			get{return this.SpecName;}
			set{this.SpecName=value;}
		}
		public string HouseNO
		{
			set
			{
				this._HouseNO=value;
			}
			get
			{
				return this._HouseNO;
			}
		}
		
		public int ClientID
		{
			set
			{
				this._ClientID=value;
			}
			get
			{
				return this._ClientID;
			}
		}

		public string getClientName
		{
			get{return this.ClientName;}
			set{this.ClientName=value;}
		}

		public string Datetime
		{
			set
			{
				this._Datetime=value;
			}
			get
			{
				return this._Datetime;
			}
		}
		public int LPID
		{
			set
			{
			 this._LPID=value;
			}
			get
			{
			 return this._LPID;
			}
		}
		public int Age
		{
			set
			{
			 this._Age=value;
			}
			get
			{
			 return this._Age;
			}
		}
		public int SpecID
		{
			set
			{
			  this._SpecID=value;
			}
			get
			{
				return this._SpecID;
			}
		}

		public int Area
		{
			set
			{
			this._Area=value;
			}
			get
			{
			  return this._Area;
			}
		}
		public string Address
		{
			set
			{
			 this._Address=value;
			}
			get
			{
			 return this._Address;
			}
		}
		public int Price
		{
			set
			{
			 this._Price=value;
			}
			get
			{
			 return this._Price;
			}
		}
		public string Remark
		{
			set
			{
			 this._Remartk=value;
			}
			get
			{
			 return this._Remartk;
			}
		}
		public string State
		{
			set
			{
			 this._State=value;
			}
			get
			{
			  return this._State;
			}
		}
		#endregion
	}
}

⌨️ 快捷键说明

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