lpmessage.cs
来自「实现房产销售的房屋管理 客户管理 并且在客户管理中实现了对预定客户和已购房客户的」· CS 代码 · 共 85 行
CS
85 行
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 + =
减小字号Ctrl + -
显示快捷键?