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

📄 lpmessage.cs

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

namespace HouseBE
{
	/// <summary>
	/// LPMessage 楼盘信息。
	/// </summary>
	public class LPMessage
	{
	  private int _LPID;
	  private string _LPName;
	  private int _CellCount;
	  private int _FloorCount;
	  private int _HouseCount;
	  private string _Opendatetime;
	  private string _Remark;

		public int LPID
		{
			set
			{
			 this._LPID=value;
			}
			get
			{
			 return this._LPID;
			}
		}
		public string LPName
		{
			set
			{
				this._LPName=value;
			}
			get
			{
			 return this._LPName;
			}
		}
		public int CellCount
		{
			set
			{
			 this._CellCount=value;
			}
			get
			{
			 return this._CellCount;
			}
		}
		public int FloorCount
		{
			set
			{
			 this._FloorCount=value;
			}
			get
			{
			 return this._FloorCount;
			}
		}
		public int HouseCount
		{
			set
			{
			 this._HouseCount=value;
			}
			get
			{
			 return  this._HouseCount;
			}
		}
		public string Opendatetime
		{
			set{this._Opendatetime=value;}
			get{return this._Opendatetime;}
		}
		public string Remark
		{
			set{this._Remark=value;}
			get{return this._Remark;}
		}
	}
}

⌨️ 快捷键说明

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