📄 sysuserinfo.cs
字号:
using System;
namespace CRM.Model
{
/// <summary>
/// 系统用户信息业务实体
/// </summary>
[Serializable]
public class SysUserInfo
{
private string _userId; //用户编号
private string _loginName; //登陆帐号
private string _loginPwd; //登陆密码
private string _trueName; //用户名称
private string _sex; //性别
private string _birthday; //生日
private string _phone; //联系电话
private string _mobilePhone; //手机
private string _address; //联系地址
private string _postCode; //邮编
private string _email; //电子邮箱
private string _departId; //部门信息
private string _bz; //备注
public SysUserInfo()
{
}
public string UserId
{
get{return _userId;}
set{_userId = value;}
}
public string LoginName
{
get{return _loginName;}
set{_loginName = value;}
}
public string LoginPwd
{
get{return _loginPwd;}
set{_loginPwd = value;}
}
public string TrueName
{
get{return _trueName;}
set{_trueName = value;}
}
public string Sex
{
get{return _sex;}
set{_sex=value;}
}
public string Birthday
{
get{return _birthday;}
set{_birthday=value;}
}
public string Phone
{
get{return _phone;}
set{_phone=value;}
}
public string MobilePhone
{
get{return _mobilePhone;}
set{_mobilePhone=value;}
}
public string Address
{
get{return _address;}
set{_address=value;}
}
public string PostCode
{
get{return _postCode;}
set{_postCode=value;}
}
public string Email
{
get{return _email;}
set{_email=value;}
}
public string DepartId
{
get{return _departId;}
set{_departId = value;}
}
public string BZ
{
get{return _bz;}
set{_bz=value;}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -