?? finance.cs
字號(hào):
using System;
namespace HouseBE
{
/// <summary>
/// Finance 實(shí)體 財(cái)務(wù)信息。
/// </summary>
public class Finance
{
private int _SellID;
private string _SellDate;
private float _TotalMoney;
private string _Remark;
public int SellID
{
set
{
this._SellID=value;
}
get
{
return this._SellID;
}
}
public string SellDate
{
set
{
this._SellDate=value;
}
get
{
return this._SellDate;
}
}
public float TotalMoney
{
set
{
this._TotalMoney=value;
}
get
{
return this._TotalMoney;
}
}
public string Remark
{
set
{
this._Remark=value;
}
get
{
return this._Remark;
}
}
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -