?? basesubject.cs
字號(hào):
/*****************************************************************************************************
*
* 作 者: 夏竹青
*
* 創(chuàng)建日期:2006-11-6
*
* 功能描述:基類,科目表字段屬性
*
*
* 處理過(guò)程:基類,科目表字段屬性
*
*
* 調(diào)用說(shuō)明:在BusinessLayer層及DataLayer層中繼承以及實(shí)例化,以使用其各屬性
*
*
*************************************************************************************************/
using System;
namespace AbstractLayer
{
/// <summary>
/// Summary description for baseSubject.
/// </summary>
public abstract class baseSubject
{
private string _subjectID;//科目代碼
private string _subjectName;//科目名稱
private string _memId;//助記碼
private string _subjectCat;//科目類別
private string _hasSubject;//是否存貨科目
private string _balanceDirec;//余額方向
private string _quantityUnit;//數(shù)量單位
//for subjectID
public string subjectID
{
get {return _subjectID;}
set
{
if(value !=_subjectID)
{
_subjectID = value;
}
}
}
//for subjectName
public string subjectName
{
get{return _subjectName;}
set
{
if(value !=_subjectName)
{
_subjectName = value;
}
}
}
//for memId
public string memId
{
get{return _memId;}
set
{
if(value !=_memId)
{
_memId = value;
}
}
}
//for subjectCat
public string subjectCat
{
get{return _subjectCat;}
set
{
if(value !=_subjectCat)
{
_subjectCat = value;
}
}
}
//for hasSubject
public string hasSubject
{
get{return _hasSubject;}
set
{
if(value !=_hasSubject)
{
_hasSubject = value;
}
}
}
//for balanceDirec
public string balanceDirec
{
get{return _balanceDirec;}
set
{
if(value!=_balanceDirec)
{
_balanceDirec = value;
}
}
}
//for quantityUnit
public string quantityUnit
{
get{return _quantityUnit;}
set
{
if(value!=_quantityUnit)
{
_quantityUnit = value;
}
}
}
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -