home.cs
来自「实现房产销售的房屋管理 客户管理 并且在客户管理中实现了对预定客户和已购房客户的」· CS 代码 · 共 188 行
CS
188 行
using System;
namespace HouseBE
{
/// <summary>
/// Home 的摘要说明。
/// </summary>
public class Home
{
private int _HomeID;
private int _LPID;
private string _LPName;
private int _HouseID;
private string _HouseNO;
private string _HomeNO;
private int _HomeFloor;
private string _HomeFormat;
private string _Hometypes;
private int _HomeCell;
private string _HomeChao;
private int _HomeArea;
private int _HomePrice;
private int _HomeTotalPrice;
private string _Remark;
private string _State;
public int LPID
{
get{return this._LPID;}
set{this._LPID=value;}
}
public string getLPName
{
get{return this._LPName;}
set{this._LPName=value;}
}
public string getHouseNO
{
get{return this._HouseNO;}
set{this._HouseNO=value;}
}
public int HomeID
{
set
{
this._HomeID=value;
}
get
{
return this._HomeID;
}
}
public int HouseID
{
set
{
this._HouseID=value;
}
get
{
return this._HouseID;
}
}
public string HomeNO
{
set
{
this._HomeNO=value;
}
get
{
return this._HomeNO;
}
}
public int HomeFloor
{
set
{
this._HomeFloor=value;
}
get
{
return this._HomeFloor;
}
}
public string HomeFormat
{
set
{
this._HomeFormat=value;
}
get
{
return this._HomeFormat;
}
}
public string Hometypes
{
set
{
this._Hometypes=value;
}
get
{
return this._Hometypes;
}
}
public int HomeCell
{
set
{
this._HomeCell=value;
}
get
{
return this._HomeCell;
}
}
public string HomeChao
{
set
{
this._HomeChao=value;
}
get
{
return this._HomeChao;
}
}
public int HomeArea
{
set
{
this._HomeArea=value;
}
get
{
return this._HomeArea;
}
}
public int HomePrice
{
set
{
this._HomePrice=value;
}
get
{
return this._HomePrice;
}
}
public int HomeTotalPrice
{
set
{
this._HomeTotalPrice=value;
}
get
{
return this._HomeTotalPrice;
}
}
public string Remark
{
set
{
this._Remark=value;
}
get
{
return this._Remark;
}
}
public string State
{
set
{
this._State=value;
}
get
{
return this._State;
}
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?