?? basesubrectbl.cs
字號:
/*****************************************************************************************************
*
* 作 者: 韓永亮
*
* 創建日期:2006-10-19
*
* 功能描述:基類,分錄表字段屬性
*
*
* 處理過程:基類,分錄表字段屬性
*
*
* 調用說明:在BusinessLayer層及DataLayer層中繼承以及實例化,以使用其各屬性
*
*
*************************************************************************************************/
using System;
namespace AbstractLayer
{
/// <summary>
/// baseSubRecTbl 的摘要說明。
/// </summary>
public abstract class baseSubRecTbl
{
private string _inNum; // 編號
private string _warNum; // 憑證編號
private string _summary; // 摘要
private string _subjectNum; // 科目代碼
private string _debtor; // 借方
private string _lender; // 貸方
private string _quantity; // 數量
private string _price; // 單價
private string _sumKind; // 結算方式
private string _sumCode; // 結算號
private string _sumDate; // 結算日期
//for inNum
public string inNum
{
get {return _inNum;}
set
{
if(value !=_inNum)
{
_inNum = value;
}
}
}
//for warNum
public string warNum
{
get {return _warNum;}
set
{
if(value !=_warNum)
{
_warNum = value;
}
}
}
//for summary
public string summary
{
get {return _summary;}
set
{
if(value !=_summary)
{
_summary = value;
}
}
}
//for subjectNum
public string subjectNum
{
get {return _subjectNum;}
set
{
if(value !=_subjectNum)
{
_subjectNum= value;
}
}
}
//for debtor
public string debtor
{
get {return _debtor;}
set
{
if(value !=_debtor)
{
_debtor = value;
}
}
}
//for lender
public string lender
{
get {return _lender;}
set
{
if(value !=_lender)
{
_lender = value;
}
}
}
//for quantity
public string quantity
{
get {return _quantity;}
set
{
if(value !=_quantity)
{
_quantity = value;
}
}
}
//for price
public string price
{
get {return _price;}
set
{
if(value !=_price)
{
_price = value;
}
}
}
//for sumKind
public string sumKind
{
get {return _sumKind;}
set
{
if(value !=_sumKind)
{
_sumKind = value;
}
}
}
//for sumCode
public string sumCode
{
get {return _sumCode;}
set
{
if(value !=_sumCode)
{
_sumCode = value;
}
}
}
//for sumDate
public string sumDate
{
get {return _sumDate;}
set
{
if(value !=_sumDate)
{
_sumDate = value;
}
}
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -