📄 userinfo.cs
字号:
//============================================================
// Producnt name: BoBoARTS.CodeMad
// Version: 1.0
// Coded by: Shen Bo (bo.shen@jb-aptech.com.cn)
// Auto generated at: 2008-9-18 16:07:39
//============================================================
using System;
using System.Collections.Generic;
using System.Text;
namespace Office.Model
{
[Serializable()]
public class UserInfo
{
private string userId;
private UserState userState;
private RoleInfo role;
private string userName = String.Empty;
private string password = String.Empty;
private int departId;
private int gender;
public UserInfo() { }
public UserInfo(String _userid,UserState _userstate,RoleInfo _role,String _username,String _password,int _departid,int _gender)
{
this.userId = _userid;
this.userState = _userstate;
this.role = _role;
this.userName = _username;
this.password = _password;
this.departId = _departid;
this.gender = _gender;
}
public string UserId
{
get { return this.userId; }
set { this.userId = value; }
}
public UserState UserState
{
get { return this.userState; }
set { this.userState = value; }
}
public RoleInfo Role
{
get { return this.role; }
set { this.role = value; }
}
public string UserName
{
get { return this.userName; }
set { this.userName = value; }
}
public string Password
{
get { return this.password; }
set { this.password = value; }
}
public int DepartId
{
get { return this.departId; }
set { this.departId = value; }
}
public int Gender
{
get { return this.gender; }
set { this.gender = value; }
}
public override string ToString()
{
return this.userId;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -