📄 finance.cs
字号:
using System;
namespace HouseBE
{
/// <summary>
/// Finance 实体 财务信息。
/// </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;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -