accountbook.cs
来自「《C#和.NET第一步》中的财务系统 利用三层结构做的」· CS 代码 · 共 42 行
CS
42 行
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 + =
减小字号Ctrl + -
显示快捷键?