using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace YTSoft.BaseCallCenter.Model
{
///
/// UserAccount:实体类(属性说明自动提取数据库字段的描述信息)
///
[Serializable]
public partial class UserAccount
{
public UserAccount()
{}
#region Model
private int _f_userid;
private string _f_usercode;
private string _f_password;
private string _f_extensionnumber;
private string _f_username;
private int _f_deptid;
private int _f_roleid;
private int? _f_groupid;
private bool? _f_seatflag;
private string _f_seatright;
private string _f_seatlevel;
private string _f_sexflag;
private bool? _f_remindflag;
private string _f_remark;
private string _f_telephone;
private string _f_mobile;
private string _f_homephone;
private DateTime? _f_birthday;
private DateTime? _f_createon;
private DateTime? _f_cancelon;
private int? _f_deleteflag;
private bool? _f_apponflag;
private DateTime? _f_lastactivetime;
private string _f_see;
private int? _f_hjtype;
private int? _f_pid;
private int? _f_tmid;
private string _f_rolename;
private string _f_deptname;
private string _f_worknumber;
///
///
///
public int F_UserId
{
set{ _f_userid=value;}
get{return _f_userid;}
}
///
///
///
public string F_UserCode
{
set{ _f_usercode=value;}
get{return _f_usercode;}
}
///
///
///
public string F_Password
{
set{ _f_password=value;}
get{return _f_password;}
}
///
///
///
public string F_ExtensionNumber
{
set{ _f_extensionnumber=value;}
get{return _f_extensionnumber;}
}
///
///
///
public string F_UserName
{
set{ _f_username=value;}
get{return _f_username;}
}
///
///
///
public int F_DeptId
{
set{ _f_deptid=value;}
get{return _f_deptid;}
}
///
///
///
public int F_RoleId
{
set{ _f_roleid=value;}
get{return _f_roleid;}
}
///
///
///
public int? F_GroupId
{
set{ _f_groupid=value;}
get{return _f_groupid;}
}
///
///
///
public bool? F_SeatFlag
{
set{ _f_seatflag=value;}
get{return _f_seatflag;}
}
///
///
///
public string F_SeatRight
{
set{ _f_seatright=value;}
get{return _f_seatright;}
}
///
///
///
public string F_SeatLevel
{
set{ _f_seatlevel=value;}
get{return _f_seatlevel;}
}
///
///
///
public string F_SexFlag
{
set{ _f_sexflag=value;}
get{return _f_sexflag;}
}
///
///
///
public bool? F_RemindFlag
{
set{ _f_remindflag=value;}
get{return _f_remindflag;}
}
///
///
///
public string F_Remark
{
set{ _f_remark=value;}
get{return _f_remark;}
}
///
///
///
public string F_Telephone
{
set{ _f_telephone=value;}
get{return _f_telephone;}
}
///
///
///
public string F_Mobile
{
set{ _f_mobile=value;}
get{return _f_mobile;}
}
///
///
///
public string F_HomePhone
{
set{ _f_homephone=value;}
get{return _f_homephone;}
}
///
///
///
public DateTime? F_Birthday
{
set{ _f_birthday=value;}
get{return _f_birthday;}
}
///
///
///
public DateTime? F_CreateOn
{
set{ _f_createon=value;}
get{return _f_createon;}
}
///
///
///
public DateTime? F_CancelOn
{
set{ _f_cancelon=value;}
get{return _f_cancelon;}
}
///
///
///
public int? F_DeleteFlag
{
set{ _f_deleteflag=value;}
get{return _f_deleteflag;}
}
///
///
///
public bool? F_APPOnFlag
{
set{ _f_apponflag=value;}
get{return _f_apponflag;}
}
///
///
///
public DateTime? F_LastActiveTime
{
set{ _f_lastactivetime=value;}
get{return _f_lastactivetime;}
}
///
///
///
public string F_See
{
set{ _f_see=value;}
get{return _f_see;}
}
///
///
///
public int? F_HJType
{
set{ _f_hjtype=value;}
get{return _f_hjtype;}
}
///
///
///
public int? F_PId
{
set{ _f_pid=value;}
get{return _f_pid;}
}
///
///
///
public int? F_TmId
{
set{ _f_tmid=value;}
get{return _f_tmid;}
}
///
///
///
public string F_RoleName
{
set{ _f_rolename=value;}
get{return _f_rolename;}
}
///
///
///
public string F_DeptName
{
set{ _f_deptname=value;}
get{return _f_deptname;}
}
///
///
///
public string F_WorkNumber
{
set { _f_worknumber = value; }
get { return _f_worknumber; }
}
#endregion Model
}
}