📄 accountbook.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace Common
{
public class AccountBook
{
private int aUID;
private string aMoneyType;
private string aType;
private string aName;
private string aRemarks;
public int AUID
{
get { return aUID; }
set { aUID = value; }
}
public string AMoneyType
{
get { return aMoneyType; }
set { aMoneyType = value; }
}
public string AType
{
get { return aType; }
set { aType = value; }
}
public string AName
{
get { return aName; }
set { aName = value; }
}
public string ARemarks
{
get { return aRemarks; }
set { aRemarks = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -