busness.cs
来自「实现房产销售的房屋管理 客户管理 并且在客户管理中实现了对预定客户和已购房客户的」· CS 代码 · 共 73 行
CS
73 行
using System;
namespace HouseBE
{
/// <summary>
/// Busness 实体 交易信息。
/// </summary>
public class Busness
{
private int _ClientID;
private float _BMoney;
private string _BDate;
private int _BoperatorID;
private string _Remark;
public int ClientID
{
set
{
this._ClientID=value;
}
get
{
return this._ClientID;
}
}
public float BMoney
{
set
{
this._BMoney=value;
}
get
{
return this._BMoney;
}
}
public string BDate
{
set
{
this._BDate=value;
}
get
{
return this._BDate;
}
}
public int BoperatorID
{
set
{
this._BoperatorID=value;
}
get
{
return this._BoperatorID;
}
}
public string Remark
{
set
{
this._Remark=value;
}
get
{
return this._Remark;
}
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?