日期:2014-05-18 浏览次数:20504 次
public class User
{
#region 私有成员
private int _userID; //用户ID
private string _loginName; //用户登录名
private string _userName; //用户姓名
private string _password; //用户密码
private string _address; //用户地址
private string _homepage; //用户主页
private string _email; //用户Email
private bool _exist; //是否存在标志
#endregion 私有成员
#region 属性
public int UserID
{
set
{
this._userID = value;
}
get
{
return this._userID;
}
}
public string LoginName
{
set
{
this._loginName = value;
}
get
{
return this._loginName;
}
}
public string UserName
{
set
{
this._userName = value;
}
get
{
return this._userName;
}
}
public string Password
{
set
{
this._password = value;
}
get
{
return this._password;
}
}
public string Address
{
set
{
this._address = value;
}