billdaily.cs
来自「《C#和.NET第一步》中的财务系统 利用三层结构做的」· CS 代码 · 共 62 行
CS
62 行
using System;
using System.Collections.Generic;
using System.Text;
namespace Common
{
public class BillDaily
{
private int bAID;
private float bDINMoney;
private float bDOUTMoney;
private string bDItem;
private DateTime bDDate;
private string bDUser;
private string bDRemarks;
private float bDBalance;
public int BAID
{
get { return bAID; }
set { bAID = value; }
}
public float BDBalance
{
get { return bDBalance; }
set { bDBalance = value; }
}
public float BDINMoney
{
get { return bDINMoney; }
set { bDINMoney = value; }
}
public float BDOUTMoney
{
get { return bDOUTMoney; }
set { bDOUTMoney = value; }
}
public string BDItem
{
get { return bDItem; }
set { bDItem = value; }
}
public DateTime BDDate
{
get { return bDDate; }
set { bDDate = value; }
}
public string BDUser
{
get { return bDUser; }
set { bDUser = value; }
}
public string BDRemarks
{
get { return bDRemarks; }
set { bDRemarks = value; }
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?