?? basemember.cs
字號:
/*****************************************************************************************************
*
* 作 者: 夏竹青
*
* 創(chuàng)建日期:2006-10-17
*
* 功能描述:基類,用戶字段屬性
*
*
* 處理過程:基類,用戶字段屬性
*
*
* 調(diào)用說明:在BusinessLayer層及DataLayer層中繼承以及實例化,以使用其各屬性
*
*
*************************************************************************************************/
using System;
namespace AbstractLayer
{
/// <summary>
/// Summary description for baseMember.
/// </summary>
public abstract class baseMember
{
private string _userId;//用戶名
private string _passWord;//密碼
private string _role;//權(quán)限
private string _userName;//真實姓名
private string _job;//職位
private string _contactNo;//聯(lián)系電話
private string _emailAddress;//E-mail
private string _homeAddress;//家庭地址
private string _specify;//備注
//for userId
public string userId
{
get {return _userId;}
set
{
if(value !=_userId)
{
_userId = value;
}
}
}
//for passWord
public string passWord
{
get{return _passWord;}
set
{
if(value !=_passWord)
{
_passWord = value;
}
}
}
//for role
public string role
{
get{return _role;}
set
{
if(value !=_role)
{
_role = value;
}
}
}
//for userName
public string userName
{
get{return _userName;}
set
{
if(value !=_userName)
{
_userName = value;
}
}
}
//for job
public string job
{
get{return _job;}
set
{
if(value !=_job)
{
_job = value;
}
}
}
//for contactNo
public string contactNo
{
get{return _contactNo;}
set
{
if(value!=_contactNo)
{
_contactNo = value;
}
}
}
//for emailAddress
public string emailAddress
{
get{return _emailAddress;}
set
{
if(value!=_emailAddress)
{
_emailAddress = value;
}
}
}
//for homeAddress
public string homeAddress
{
get{return _homeAddress;}
set
{
if(value!=_homeAddress)
{
_homeAddress = value;
}
}
}
//for specialfy
public string specify
{
get{return _specify;}
set
{
if(value!=_specify)
{
_specify = value;
}
}
}
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -