📄 bargain.cs
字号:
using System;
namespace HouseBE
{
/// <summary>
/// Bargain 的摘要说明。
/// </summary>
public class Bargain
{
private int _BargainID;
private string _BargainNO;
private int _ClientID;
private string _SellFashion;
private string _Remark;
public int BargainID
{
set
{
this._BargainID=value;
}
get
{
return this._BargainID;
}
}
public string BargainNO
{
set{this._BargainNO=value;}
get{return this._BargainNO;}
}
public int ClientID
{
set
{
this._ClientID=value;
}
get
{
return this._ClientID;
}
}
public string SellFashion
{
set
{
this._SellFashion=value;
}
get
{
return this._SellFashion;
}
}
public string Remark
{
set
{
this._Remark=value;
}
get
{
return this._Remark;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -