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

📄 yessells.cs

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

namespace HouseBE
{
	/// <summary>
	/// YesSells 已售房信息。
	/// </summary>
	public class YesSells
	{  
		//已售房编号 
		private int _YhouseID;
		//楼房编号
		private string _YHouseNO;
		//客户编号
		private int _ClientID;
		//所属楼盘
		private int _YLPID;
		//层数
		private int _Yage;
		//规格编号 
		private int _YspecID;
        //面积 
		private float _Yarea;
        //地址 
		private string _Yaddress;
		//单价
		private float _Yprice;
		//备注
		private string _Yremartk;
		//出售日期
		private string _Ydatetime;

		#region 售楼属性
		public int YhouseID
		{
			set
			{
			 this._YhouseID=value;
			}
			get
			{
			 return this._YhouseID;
			}
		}
		
		public string YHouseNO
		{
			set
			{
				this._YHouseNO=value;
			}
			get
			{
				return this._YHouseNO;
			}
		}
		
		public int ClientID
		{
			set
			{
				this._ClientID=value;
			}
			get
			{
				return this._ClientID;
			}
		}

		public string Ydatetime
		{
			set
			{
				this._Ydatetime=value;
			}
			get
			{
				return this._Ydatetime;
			}
		}
		public int YLPID
		{
			set
			{
			 this._YLPID=value;
			}
			get
			{
			 return this._YLPID;
			}
		}
		public int Yage
		{
			set
			{
			 this._Yage=value;
			}
			get
			{
			 return this._Yage;
			}
		}
		public int YspecID
		{
			set
			{
			  this._YspecID=value;
			}
			get
			{
				return this._YspecID;
			}
		}

		public float Yarea
		{
			set
			{
			this._Yarea=value;
			}
			get
			{
			  return this._Yarea;
			}
		}
		public string Yaddress
		{
			set
			{
			 this._Yaddress=value;
			}
			get
			{
			 return this._Yaddress;
			}
		}
		public float Yprice
		{
			set
			{
			 this._Yprice=value;
			}
			get
			{
			 return this._Yprice;
			}
		}
		public string Yremark
		{
			set
			{
			 this._Yremartk=value;
			}
			get
			{
			 return this._Yremartk;
			}
		}
		#endregion
	}
}

⌨️ 快捷键说明

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