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

📄 notsells.cs

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

namespace HouseBE
{
	/// <summary>
	/// NotSells 未售房信息。
	/// </summary>
	public class NotSells
	{
		private int _NhouseID;
		//楼房编号
		private string _NHouseNO;
        //所属楼盘编号
		private int _NLPID;
		//房龄
		private int _Nage;
		//规格编号
		private int _NspecID;
        //面积
		private float _Narea;
        //地址
		private string _Naddress;
		//单价
		private float _Nprice;
		//备注
		private string _Nremark;


		public int NhouseID
		{
			set
			{
			 this._NhouseID=value;
			}
			get
			{
			 return this._NhouseID;
			}
		}
		public string NHouseNO
		{
			set
			{
			 this._NHouseNO=value;
			}
			get
			{
			 return this._NHouseNO;
			}
		}
		public int NLPID
		{
			set
			{
			 this._NLPID=value;
			}
			get
			{
			 return this._NspecID;
			}
		}
		public int Nage
		{
			set
			{
			 this._Nage=value;
			}
			get
			{
			 return this._Nage;
			}
		}
		public int NspecID
		{
			set
			{
			 this._NspecID=value;
			}
			get
			{
			 return this._NspecID;
			}
		}
		public float Narea
		{
			set
			{
			 this._Narea=value;
			}
			get
			{
			 return this._Narea;
			}
		}
		public string Naddress
		{
			set
			{
			  this._Naddress=value;
			}
			get
			{
			  return this._Naddress;
			}
		}
		public float Nprice
		{
			set
			{
			  this._Nprice=value;
			}
			get
			{
			  return this._Nprice;
			}
		}
		public string Nremark
		{
			set
			{
			 this._Nremark=value;
			}
			get
			{
			  return this._Nremark;
			}
		}
	}
}

⌨️ 快捷键说明

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